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

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 #include "base/basictypes.h"
6
7 class BrokerRpcClient {
8 public:
9 BrokerRpcClient();
10 ~BrokerRpcClient();
11
12 bool Connect();
13 void Disconnect();
14 bool FireEvent(BSTR event_name, BSTR event_args);
15
16 bool is_connected() const {
17 return context_ != NULL && binding_handle_ != NULL;
18 }
19 private:
20 void LockContext();
21 void ReleaseContext();
22
23 RPC_BINDING_HANDLE binding_handle_;
24 void* context_;
25 DISALLOW_COPY_AND_ASSIGN(BrokerRpcClient);
26 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698