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

Unified Diff: components/policy/core/common/cloud/policy_header_service_unittest.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: components/policy/core/common/cloud/policy_header_service_unittest.cc
diff --git a/components/policy/core/common/cloud/policy_header_service_unittest.cc b/components/policy/core/common/cloud/policy_header_service_unittest.cc
index 94363b50ba5b871b5fc0945c7936c930d41b8d23..b8c4e5b2ee3b2b1ec5eacf1827db80dd5bd5b345 100644
--- a/components/policy/core/common/cloud/policy_header_service_unittest.cc
+++ b/components/policy/core/common/cloud/policy_header_service_unittest.cc
@@ -61,9 +61,9 @@ class PolicyHeaderServiceTest : public testing::Test {
std::string decoded;
base::Base64Decode(header, &decoded);
// Parse the JSON.
- scoped_ptr<Value> value(base::JSONReader::Read(decoded));
+ scoped_ptr<base::Value> value(base::JSONReader::Read(decoded));
ASSERT_TRUE(value);
- DictionaryValue* dict;
+ base::DictionaryValue* dict;
EXPECT_TRUE(value->GetAsDictionary(&dict));
// Read the values and verify them vs the expected values.
std::string dm_token;

Powered by Google App Engine
This is Rietveld 408576698