Commit 02d580e5 authored by Maciek Kumorek's avatar Maciek Kumorek Committed by Commit Bot

Move IIDs of the new updater COM interfaces to BUILD.gn


Move UUID definitions of the ICompleteStatus and IUpdaterObserver to the
BUILD.gn file so it can be customized by adopters.

Change-Id: Ia265adba9853cbfc1c6c34d1bba73b54e2fa2c6b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2111278
Auto-Submit: Maciek Kumorek <makumo@microsoft.com>
Reviewed-by: default avatarSorin Jianu <sorin@chromium.org>
Reviewed-by: default avatarJoshua Pawlicki <waffles@chromium.org>
Commit-Queue: Maciek Kumorek <makumo@microsoft.com>
Cr-Commit-Position: refs/heads/master@{#752044}
parent b5477fae
...@@ -7,6 +7,8 @@ import("//build/toolchain/win/midl.gni") ...@@ -7,6 +7,8 @@ import("//build/toolchain/win/midl.gni")
midl("updater_idl_idl") { midl("updater_idl_idl") {
sources = [ "updater_idl.idl" ] sources = [ "updater_idl.idl" ]
defines = [ defines = [
"ICOMPLETESTATUS_IID=2FCD14AF-B645-4351-8359-E80A0E202A0B",
"IUPDATEROBSERVER_IID=7B416CFD-4216-4FD6-BD83-7C586054676E",
"IUPDATER_IID=63B8FFB1-5314-48C9-9C57-93EC8BC6184B", "IUPDATER_IID=63B8FFB1-5314-48C9-9C57-93EC8BC6184B",
"UPDATER_LIB_UUID=69464FF0-D9EC-4037-A35F-8AE4358106CC", "UPDATER_LIB_UUID=69464FF0-D9EC-4037-A35F-8AE4358106CC",
"UPDATER_CLSID=158428A4-6014-4978-83BA-9FAD0DABE791", "UPDATER_CLSID=158428A4-6014-4978-83BA-9FAD0DABE791",
......
...@@ -8,7 +8,7 @@ import "ocidl.idl"; ...@@ -8,7 +8,7 @@ import "ocidl.idl";
[ [
object, object,
dual, dual,
uuid(2FCD14AF-B645-4351-8359-E80A0E202A0B), uuid(ICOMPLETESTATUS_IID),
helpstring("ICompleteStatus Interface"), helpstring("ICompleteStatus Interface"),
pointer_default(unique) pointer_default(unique)
] ]
...@@ -20,7 +20,7 @@ interface ICompleteStatus : IUnknown { ...@@ -20,7 +20,7 @@ interface ICompleteStatus : IUnknown {
[ [
object, object,
oleautomation, oleautomation,
uuid(7B416CFD-4216-4FD6-BD83-7C586054676E), uuid(IUPDATEROBSERVER_IID),
helpstring("IUpdaterObserver Interface"), helpstring("IUpdaterObserver Interface"),
pointer_default(unique) pointer_default(unique)
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment