Index: ceee/ie/broker/broker_rpc_server.h |
=================================================================== |
--- ceee/ie/broker/broker_rpc_server.h (revision 0) |
+++ ceee/ie/broker/broker_rpc_server.h (revision 0) |
@@ -0,0 +1,22 @@ |
+ // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "base/basictypes.h" |
+ |
+class BrokerRpcServer { |
+ public: |
+ BrokerRpcServer(); |
+ ~BrokerRpcServer(); |
+ |
+ bool Start(); |
+ bool Stop(); |
+ |
+ bool is_started() const { |
+ return is_started_; |
+ } |
+ |
+ private: |
+ bool is_started_; |
+ DISALLOW_COPY_AND_ASSIGN(BrokerRpcServer); |
+}; |
Property changes on: ceee\ie\broker\broker_rpc_server.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |