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

Unified Diff: ceee/ie/broker/broker_rpc_lib.idl

Issue 4508002: COM replaced with RPC for firing events in broker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Index: ceee/ie/broker/broker_rpc_lib.idl
===================================================================
--- ceee/ie/broker/broker_rpc_lib.idl (revision 0)
+++ ceee/ie/broker/broker_rpc_lib.idl (revision 0)
@@ -0,0 +1,25 @@
+import "oaidl.idl";
+import "ocidl.idl";
+
+
+[ uuid (931C5D3F-A6D7-411B-98ED-789FC9291302),
+ version(1.1),
+ pointer_default(unique),
+]
+interface Broker {
+
+typedef [context_handle] void* BrokerContextHandle;
+
+BrokerContextHandle Connect(
+ [in] handle_t binding_handle);
+
+void Disconnect(
+ [in] handle_t binding_handle,
+ [in, out] BrokerContextHandle* context);
+
+void FireEvent(
+ [in] handle_t binding_handle,
+ [in] BSTR event_name,
+ [in] BSTR event_args);
+
+}
Property changes on: ceee\ie\broker\broker_rpc_lib.idl
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698