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

Unified Diff: ceee/ie/broker/broker_rpc_lib.idl

Issue 5258006: Restart of ceee_broker on crash. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ceee/ie/broker/broker_rpc_client.cc ('k') | ceee/ie/broker/broker_rpc_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/broker/broker_rpc_lib.idl
===================================================================
--- ceee/ie/broker/broker_rpc_lib.idl (revision 67905)
+++ ceee/ie/broker/broker_rpc_lib.idl (working copy)
@@ -15,37 +15,32 @@
// @name Implementation specific calls.
// @{
// Returns context handle for new client.
-BrokerContextHandle Connect(
- [in] handle_t binding_handle);
+BrokerContextHandle Connect([in] handle_t binding_handle);
// Release context handle.
-void Disconnect(
- [in] handle_t binding_handle,
- [in, out] BrokerContextHandle* context);
+void Disconnect([in] handle_t binding_handle,
+ [in, out] BrokerContextHandle* context);
// @}
// @name Remote calls.
// @{
// Fires event to broker.
// @param context is required to avoid execution by wrong broker instance.
-void FireEvent(
- [in] handle_t binding_handle,
- [in] BrokerContextHandle context,
- [in, string] const char* event_name,
- [in, string] const char* event_args);
+void FireEvent([in] handle_t binding_handle,
+ [in] BrokerContextHandle context,
+ [in, string] const char* event_name,
+ [in, string] const char* event_args);
-void SendUmaHistogramTimes(
- [in] handle_t binding_handle,
- [in, string] const char* name,
- [in] int sample);
+void SendUmaHistogramTimes([in] handle_t binding_handle,
+ [in, string] const char* name,
+ [in] int sample);
-void SendUmaHistogramData(
- [in] handle_t binding_handle,
- [in, string] const char* name,
- [in] int sample,
- [in] int min,
- [in] int max,
- [in] int bucket_count);
+void SendUmaHistogramData([in] handle_t binding_handle,
+ [in, string] const char* name,
+ [in] int sample,
+ [in] int min,
+ [in] int max,
+ [in] int bucket_count);
// @}
}
« no previous file with comments | « ceee/ie/broker/broker_rpc_client.cc ('k') | ceee/ie/broker/broker_rpc_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698