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

Unified Diff: services/preferences/public/cpp/tests/pref_observer_store_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
« no previous file with comments | « remoting/test/remote_host_info_fetcher.cc ('k') | third_party/libaddressinput/chromium/json.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/preferences/public/cpp/tests/pref_observer_store_unittest.cc
diff --git a/services/preferences/public/cpp/tests/pref_observer_store_unittest.cc b/services/preferences/public/cpp/tests/pref_observer_store_unittest.cc
index b1fcb0453fa207ccaa39e270c8df4fddc8b50454..d18cfbe75cf953f9656202ab7a40c303d99a572d 100644
--- a/services/preferences/public/cpp/tests/pref_observer_store_unittest.cc
+++ b/services/preferences/public/cpp/tests/pref_observer_store_unittest.cc
@@ -267,7 +267,7 @@ TEST_F(PrefObserverStoreTest, WriteToNestedPrefs) {
// Change an item within the nested dictionary
base::Value* result = nullptr;
store()->GetMutableValue(key1, &result);
- EXPECT_EQ(base::Value::TYPE_DICTIONARY, result->GetType());
+ EXPECT_EQ(base::Value::Type::DICTIONARY, result->GetType());
EXPECT_TRUE(result->Equals(&sub_dictionary1));
base::DictionaryValue* dictionary_result = nullptr;
« no previous file with comments | « remoting/test/remote_host_info_fetcher.cc ('k') | third_party/libaddressinput/chromium/json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698