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

Unified Diff: extensions/common/file_util_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 | « extensions/common/file_util.cc ('k') | extensions/common/manifest_handlers/background_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/file_util_unittest.cc
diff --git a/extensions/common/file_util_unittest.cc b/extensions/common/file_util_unittest.cc
index 5ab3742270192ef0fb1c5bf7256cc29fa6fec8ae..c3b588cf33128dace8f74154dd9c5177b52e687f 100644
--- a/extensions/common/file_util_unittest.cc
+++ b/extensions/common/file_util_unittest.cc
@@ -52,7 +52,7 @@ scoped_refptr<Extension> LoadExtensionManifest(
std::unique_ptr<base::Value> result = deserializer.Deserialize(NULL, error);
if (!result.get())
return NULL;
- CHECK_EQ(base::Value::TYPE_DICTIONARY, result->GetType());
+ CHECK_EQ(base::Value::Type::DICTIONARY, result->GetType());
return LoadExtensionManifest(*base::DictionaryValue::From(std::move(result)),
manifest_dir, location, extra_flags, error);
}
« no previous file with comments | « extensions/common/file_util.cc ('k') | extensions/common/manifest_handlers/background_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698