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

Unified Diff: chrome/common/service_messages.cc

Issue 5955001: Remove chromoting host registration from service process. More IPCs to control (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years 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
Index: chrome/common/service_messages.cc
diff --git a/chrome/common/service_messages.cc b/chrome/common/service_messages.cc
index 98f892303f9fe5ed5537699925c22c37cb211b98..2a36caba40f2c70619fbf055de2154a235b40c10 100644
--- a/chrome/common/service_messages.cc
+++ b/chrome/common/service_messages.cc
@@ -2,5 +2,46 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "chrome/common/remoting/chromoting_host_info.h"
+#include "ipc/ipc_channel_handle.h"
+
#define IPC_MESSAGE_IMPL
#include "chrome/common/service_messages.h"
+
+namespace IPC {
+
+void ParamTraits<remoting::ChromotingHostInfo> ::Write(
+ Message* m, const param_type& p) {
+ WriteParam(m, p.host_id);
+ WriteParam(m, p.hostname);
+ WriteParam(m, p.public_key);
+ WriteParam(m, p.enabled);
+ WriteParam(m, p.email);
+}
+
+bool ParamTraits<remoting::ChromotingHostInfo> ::Read(
+ const Message* m, void** iter, param_type* p) {
+ bool ret = ReadParam(m, iter, &p->host_id);
+ ret = ret && ReadParam(m, iter, &p->hostname);
+ ret = ret && ReadParam(m, iter, &p->public_key);
+ ret = ret && ReadParam(m, iter, &p->enabled);
+ ret = ret && ReadParam(m, iter, &p->email);
+ return ret;
+}
+
+void ParamTraits<remoting::ChromotingHostInfo> ::Log(
+ const param_type& p, std::string* l) {
+ l->append("(");
+ LogParam(p.host_id, l);
+ l->append(", ");
+ LogParam(p.hostname, l);
+ l->append(", ");
+ LogParam(p.public_key, l);
+ l->append(", ");
+ LogParam(p.enabled, l);
+ l->append(", ");
+ LogParam(p.email, l);
+ l->append(")");
+}
+
+} // namespace IPC

Powered by Google App Engine
This is Rietveld 408576698