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

Unified Diff: components/policy/core/browser/android/android_combined_policy_provider_unittest.cc

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 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/browser/android/android_combined_policy_provider_unittest.cc
diff --git a/components/policy/core/browser/android/android_combined_policy_provider_unittest.cc b/components/policy/core/browser/android/android_combined_policy_provider_unittest.cc
index 56f91cd32aaf298c3b7c3dba2a3e44b852fd325e..b027d80ac6beb93cfc3d1d4dc5086b682ca1de5c 100644
--- a/components/policy/core/browser/android/android_combined_policy_provider_unittest.cc
+++ b/components/policy/core/browser/android/android_combined_policy_provider_unittest.cc
@@ -77,7 +77,7 @@ TEST_F(AndroidCombinedPolicyProviderTest, FlushPolices) {
const PolicyMap& map = bundle.Get(ns);
const base::Value* value = map.GetValue("TestPolicy");
ASSERT_NE(nullptr, value);
- EXPECT_EQ(base::Value::TYPE_STRING, value->GetType());
+ EXPECT_EQ(base::Value::Type::STRING, value->GetType());
std::string out_value;
EXPECT_TRUE(value->GetAsString(&out_value));
EXPECT_EQ("TestValue", out_value);
« no previous file with comments | « components/nacl/renderer/json_manifest.cc ('k') | components/policy/core/browser/android/policy_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698