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

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
« no previous file with comments | « ceee/ie/broker/broker_rpc_client.cc ('k') | ceee/ie/broker/broker_rpc_server.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // TODO(vitalybuka@google.com): decide if we need meaningful version.
7 version(1.1),
8 pointer_default(unique),
9 ]
10 interface CeeeBroker {
11
12 // Context handle to allow server maintain number of active clients.
13 typedef [context_handle] void* BrokerContextHandle;
14
15 // @name Implementation specific calls.
16 // @{
17 // Returns context handle for new client.
18 BrokerContextHandle Connect(
19 [in] handle_t binding_handle);
20
21 // Release context handle.
22 void Disconnect(
23 [in] handle_t binding_handle,
24 [in, out] BrokerContextHandle* context);
25 // @}
26
27 // @name Remote calls.
28 // @{
29 // Fires event to broker.
30 void FireEvent(
31 [in] handle_t binding_handle,
32 [in] BSTR event_name,
33 [in] BSTR event_args);
34 // @}
35 }
OLDNEW
« no previous file with comments | « ceee/ie/broker/broker_rpc_client.cc ('k') | ceee/ie/broker/broker_rpc_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698