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

Side by Side Diff: ceee/ie/broker/broker_rpc_client.h

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 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Broker RPC Client.
6
7 #include <wtypes.h>
8 #include "base/basictypes.h"
9
10 // Class provides comunication with BrokerRpcServer.
11 class BrokerRpcClient {
12 public:
13 BrokerRpcClient();
14 ~BrokerRpcClient();
15
16 // Initialize connection with server.
17 bool Connect();
18
19 // Relese connection with server
20 void Disconnect();
21
22 // Returns true if object ready for remote calls.
23 bool is_connected() const {
24 return context_ != NULL && binding_handle_ != NULL;
25 }
26
27 // @name Remote calls.
28 // @{
29 // Calls FireEvent on server side.
30 bool FireEvent(BSTR event_name, BSTR event_args);
31 // @}
32
33 private:
34 void LockContext();
35 void ReleaseContext();
36
37 RPC_BINDING_HANDLE binding_handle_;
38 // Context handle. It is required to make RPC server know number of active
39 // clients.
40 void* context_;
41 DISALLOW_COPY_AND_ASSIGN(BrokerRpcClient);
42 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698