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

Unified Diff: chrome/browser/devtools/devtools_protocol.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 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
« no previous file with comments | « chrome/browser/devtools/devtools_file_helper.cc ('k') | chrome/browser/devtools/devtools_targets_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/devtools_protocol.cc
diff --git a/chrome/browser/devtools/devtools_protocol.cc b/chrome/browser/devtools/devtools_protocol.cc
index 922f9e913e0c068e2ec2eb855e88b6ed8495aeed..f14864ccf7645253bb4a729af3678a4009bf5fd0 100644
--- a/chrome/browser/devtools/devtools_protocol.cc
+++ b/chrome/browser/devtools/devtools_protocol.cc
@@ -66,7 +66,7 @@ DevToolsProtocol::Response::Response(int id, int error_code)
DevToolsProtocol::Notification* DevToolsProtocol::ParseNotification(
const std::string& json) {
scoped_ptr<base::Value> value(base::JSONReader::Read(json));
- if (!value || !value->IsType(Value::TYPE_DICTIONARY))
+ if (!value || !value->IsType(base::Value::TYPE_DICTIONARY))
return NULL;
scoped_ptr<base::DictionaryValue> dict(
@@ -84,7 +84,7 @@ DevToolsProtocol::Notification* DevToolsProtocol::ParseNotification(
DevToolsProtocol::Response* DevToolsProtocol::ParseResponse(
const std::string& json) {
scoped_ptr<base::Value> value(base::JSONReader::Read(json));
- if (!value || !value->IsType(Value::TYPE_DICTIONARY))
+ if (!value || !value->IsType(base::Value::TYPE_DICTIONARY))
return NULL;
scoped_ptr<base::DictionaryValue> dict(
« no previous file with comments | « chrome/browser/devtools/devtools_file_helper.cc ('k') | chrome/browser/devtools/devtools_targets_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698