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

Unified Diff: ppapi/proxy/serialized_var.cc

Issue 12387073: Add PPB_VarDictionary_Dev support - part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use correct base branch. Created 7 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: ppapi/proxy/serialized_var.cc
diff --git a/ppapi/proxy/serialized_var.cc b/ppapi/proxy/serialized_var.cc
index ad416db24dac220a56c43acb05ea19982a4f54e8..5352e8f946f69cc7867ec189b306615e913d4a06 100644
--- a/ppapi/proxy/serialized_var.cc
+++ b/ppapi/proxy/serialized_var.cc
@@ -140,7 +140,7 @@ void SerializedVar::Inner::WriteToMessage(IPC::Message* m) const {
break;
case PP_VARTYPE_ARRAY:
case PP_VARTYPE_DICTIONARY:
- // TODO(brettw) when these are supported, implement this.
+ // TODO(yzshen) when these are supported, implement this.
NOTIMPLEMENTED();
break;
}
@@ -210,7 +210,7 @@ bool SerializedVar::Inner::ReadFromMessage(const IPC::Message* m,
break;
case PP_VARTYPE_ARRAY:
case PP_VARTYPE_DICTIONARY:
- // TODO(brettw) when these types are supported, implement this.
+ // TODO(yzshen) when these types are supported, implement this.
NOTIMPLEMENTED();
break;
default:

Powered by Google App Engine
This is Rietveld 408576698