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

Unified Diff: chrome/browser/policy/configuration_policy_pref_store_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/configuration_policy_pref_store_unittest.cc
diff --git a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
index 4474e69358b1a1a3757d24375030dad38cf7c42d..241e7ee12060c41a929c7af16f52e49258209fe8 100644
--- a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
+++ b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
@@ -266,7 +266,7 @@ TEST_P(ConfigurationPolicyPrefStoreIntegerTest, SetValue) {
const Value* value = NULL;
EXPECT_EQ(PrefStore::READ_OK,
store_->GetValue(GetParam().pref_name(), &value));
- EXPECT_TRUE(FundamentalValue(2).Equals(value));
+ EXPECT_TRUE(base::FundamentalValue(2).Equals(value));
}
INSTANTIATE_TEST_CASE_P(
@@ -723,7 +723,7 @@ class ConfigurationPolicyPrefStoreIncognitoModeTest : public testing::Test {
const Value* value = NULL;
EXPECT_EQ(PrefStore::READ_OK,
store_->GetValue(prefs::kIncognitoModeAvailability, &value));
- EXPECT_TRUE(FundamentalValue(availability).Equals(value));
+ EXPECT_TRUE(base::FundamentalValue(availability).Equals(value));
}
MockConfigurationPolicyProvider provider_;
« no previous file with comments | « chrome/browser/policy/cloud_policy_provider_unittest.cc ('k') | chrome/browser/policy/device_policy_cache_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698