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

Unified Diff: chrome/browser/policy/policy_map_unittest.cc

Issue 7619006: base: Remove using declaration of FundamentalValue as it's no longer necessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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: chrome/browser/policy/policy_map_unittest.cc
diff --git a/chrome/browser/policy/policy_map_unittest.cc b/chrome/browser/policy/policy_map_unittest.cc
index c540bbbfafacf06d22ab16fdf5c90404a8d65960..eb54400c66c5da051813ae6b118ead03d048134e 100644
--- a/chrome/browser/policy/policy_map_unittest.cc
+++ b/chrome/browser/policy/policy_map_unittest.cc
@@ -51,9 +51,9 @@ TEST(PolicyMapTest, Swap) {
b.Set(kPolicyHomepageLocation, Value::CreateStringValue("bbb"));
b.Set(kPolicyHomepageIsNewTabPage, Value::CreateBooleanValue(true));
a.Swap(&b);
- StringValue expected("bbb");
+ base::StringValue expected("bbb");
EXPECT_TRUE(expected.Equals(a.Get(kPolicyHomepageLocation)));
- FundamentalValue expected_bool(true);
+ base::FundamentalValue expected_bool(true);
EXPECT_TRUE(expected_bool.Equals(a.Get(kPolicyHomepageIsNewTabPage)));
StringValue expected_a("aaa");
EXPECT_TRUE(expected_a.Equals(b.Get(kPolicyHomepageLocation)));
« no previous file with comments | « chrome/browser/policy/device_policy_cache_unittest.cc ('k') | chrome/browser/policy/user_policy_cache_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698