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

Unified Diff: ipc/ipc_message_utils.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « gpu/config/gpu_control_list.cc ('k') | jingle/glue/utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_utils.cc
diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc
index 3ee37f882a53064e9dba3549cf07665c574de909..1e356ab90c86ed1470714bab8e79c571dfeed788 100644
--- a/ipc/ipc_message_utils.cc
+++ b/ipc/ipc_message_utils.cc
@@ -134,7 +134,7 @@ bool ReadDictionaryValue(const Message* m, PickleIterator* iter,
for (int i = 0; i < size; ++i) {
std::string key;
- Value* subval;
+ base::Value* subval;
if (!ReadParam(m, iter, &key) ||
!ReadValue(m, iter, &subval, recursion + 1))
return false;
@@ -446,7 +446,7 @@ void ParamTraits<base::DictionaryValue>::Write(Message* m,
bool ParamTraits<base::DictionaryValue>::Read(
const Message* m, PickleIterator* iter, param_type* r) {
int type;
- if (!ReadParam(m, iter, &type) || type != Value::TYPE_DICTIONARY)
+ if (!ReadParam(m, iter, &type) || type != base::Value::TYPE_DICTIONARY)
return false;
return ReadDictionaryValue(m, iter, r, 0);
@@ -517,7 +517,7 @@ void ParamTraits<base::ListValue>::Write(Message* m, const param_type& p) {
bool ParamTraits<base::ListValue>::Read(
const Message* m, PickleIterator* iter, param_type* r) {
int type;
- if (!ReadParam(m, iter, &type) || type != Value::TYPE_LIST)
+ if (!ReadParam(m, iter, &type) || type != base::Value::TYPE_LIST)
return false;
return ReadListValue(m, iter, r, 0);
« no previous file with comments | « gpu/config/gpu_control_list.cc ('k') | jingle/glue/utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698