Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(764)

Unified Diff: remoting/host/elevated_controller.idl

Issue 10537182: The user's consent to crash dumps reporting can now be set via the UI (Windows only). The checkbox … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/breakpad_win.cc ('k') | remoting/host/elevated_controller_module_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/elevated_controller.idl
diff --git a/remoting/host/elevated_controller.idl b/remoting/host/elevated_controller.idl
index 18fbfadab7cf8a48bb372631aed568f1c0ad69d9..590b8ddd903d63cfb73c7cdd353ede2c3676ceea 100644
--- a/remoting/host/elevated_controller.idl
+++ b/remoting/host/elevated_controller.idl
@@ -46,9 +46,28 @@ interface IDaemonControl: IDispatch {
};
[
+ object,
+ uuid(655bd819-c08c-4b04-80c2-f160739ff6ef),
+ dual,
+ nonextensible,
+ helpstring("IDaemonControl2 Interface"),
+ pointer_default(unique)
+]
+interface IDaemonControl2: IDaemonControl {
+ [ id(8), helpstring("Retrieves the user's consent to collect crash dumps "
+ "and gather usage statistics.") ]
+ HRESULT GetUsageStatsConsent([out] BOOL* allowed,
+ [out] BOOL* set_by_policy);
+
+ [ id(9), helpstring("Records the user's consent to collect crash dumps "
+ "and gather usage statistics.") ]
+ HRESULT SetUsageStatsConsent([in] BOOL allowed);
+};
+
+[
uuid(9d9a5a2c-576e-4acd-9c75-aabff74b205d),
- version(1.0),
- helpstring("Chromoting Elevated Controller 1.0 Type Library")
+ version(1.1),
+ helpstring("Chromoting Elevated Controller 1.1 Type Library")
]
library ChromotingElevatedControllerLib {
importlib("stdole2.tlb");
@@ -58,6 +77,6 @@ library ChromotingElevatedControllerLib {
helpstring("ElevatedController Class")
]
coclass ElevatedController {
- [default] interface IDaemonControl;
+ [default] interface IDaemonControl2;
};
};
« no previous file with comments | « remoting/base/breakpad_win.cc ('k') | remoting/host/elevated_controller_module_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698