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

Unified Diff: chrome/browser/policy/user_policy_cache_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
« no previous file with comments | « chrome/browser/policy/policy_map_unittest.cc ('k') | chrome/browser/prefs/pref_notifier_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/user_policy_cache_unittest.cc
diff --git a/chrome/browser/policy/user_policy_cache_unittest.cc b/chrome/browser/policy/user_policy_cache_unittest.cc
index 161d4d6851e8e53245f64ceda7b6321bedb2e640..df1c9c5fa986fe4f326090dc8c1eb6f476355991 100644
--- a/chrome/browser/policy/user_policy_cache_unittest.cc
+++ b/chrome/browser/policy/user_policy_cache_unittest.cc
@@ -167,21 +167,21 @@ TEST_F(UserPolicyCacheTest, DecodeIntegerValue) {
scoped_ptr<Value> value(
DecodeIntegerValue(static_cast<google::protobuf::int64>(42)));
ASSERT_TRUE(value.get());
- FundamentalValue expected_42(42);
+ base::FundamentalValue expected_42(42);
EXPECT_TRUE(value->Equals(&expected_42));
value.reset(
DecodeIntegerValue(static_cast<google::protobuf::int64>(min - 1LL)));
EXPECT_EQ(NULL, value.get());
value.reset(DecodeIntegerValue(static_cast<google::protobuf::int64>(min)));
ASSERT_TRUE(value.get());
- FundamentalValue expected_min(min);
+ base::FundamentalValue expected_min(min);
EXPECT_TRUE(value->Equals(&expected_min));
value.reset(
DecodeIntegerValue(static_cast<google::protobuf::int64>(max + 1LL)));
EXPECT_EQ(NULL, value.get());
value.reset(DecodeIntegerValue(static_cast<google::protobuf::int64>(max)));
ASSERT_TRUE(value.get());
- FundamentalValue expected_max(max);
+ base::FundamentalValue expected_max(max);
EXPECT_TRUE(value->Equals(&expected_max));
}
« no previous file with comments | « chrome/browser/policy/policy_map_unittest.cc ('k') | chrome/browser/prefs/pref_notifier_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698