OLD | NEW |
(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 }; |
OLD | NEW |