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

Unified Diff: content/public/common/message_port_types.cc

Issue 921013002: Optionally have MessagePort pass data as base::Value, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@n-c-move-v8-value-converter
Patch Set: Update singly-included comment Created 5 years, 10 months 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: content/public/common/message_port_types.cc
diff --git a/content/public/common/message_port_types.cc b/content/public/common/message_port_types.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bc69ff0eb77ff70434cc5e2d54612ac25df85baf
--- /dev/null
+++ b/content/public/common/message_port_types.cc
@@ -0,0 +1,46 @@
+// Copyright 2015 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 "content/public/common/message_port_types.h"
+
+#include "base/logging.h"
+
+namespace content {
+
+MessagePortMessage::MessagePortMessage() {
+}
+
+MessagePortMessage::MessagePortMessage(const base::string16& message)
+ : message_as_string(message) {
+}
+
+MessagePortMessage::MessagePortMessage(scoped_ptr<base::Value> message) {
+ message_as_value.Append(message.release());
+}
+
+MessagePortMessage::MessagePortMessage(const MessagePortMessage& other) {
+ *this = other;
+}
+
+MessagePortMessage& MessagePortMessage::operator=(
+ const MessagePortMessage& other) {
+ message_as_string = other.message_as_string;
+ message_as_value.Clear();
+ const base::Value* value;
+ if (other.message_as_value.Get(0, &value))
+ message_as_value.Append(value->DeepCopy());
+ return *this;
+}
+
+MessagePortMessage::~MessagePortMessage() {
+}
+
+const base::Value* MessagePortMessage::as_value() const {
+ const base::Value* value = nullptr;
+ bool result = message_as_value.Get(0, &value);
+ DCHECK(result);
+ return value;
+}
+
+} // namespace content
« no previous file with comments | « content/public/common/message_port_types.h ('k') | content/renderer/service_worker/service_worker_script_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698