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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 import "oaidl.idl";
2 import "ocidl.idl";
3
4
5 [ uuid (931C5D3F-A6D7-411B-98ED-789FC9291302),
6 version(1.1),
7 pointer_default(unique),
8 ]
9 interface Broker {
10
11 typedef [context_handle] void* BrokerContextHandle;
12
13 BrokerContextHandle Connect(
14 [in] handle_t binding_handle);
15
16 void Disconnect(
17 [in] handle_t binding_handle,
18 [in, out] BrokerContextHandle* context);
19
20 void FireEvent(
21 [in] handle_t binding_handle,
22 [in] BSTR event_name,
23 [in] BSTR event_args);
24
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698