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); |