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

Unified Diff: chrome/browser/extensions/extension_service_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: chrome/browser/extensions/extension_service_unittest.cc
diff --git a/chrome/browser/extensions/extension_service_unittest.cc b/chrome/browser/extensions/extension_service_unittest.cc
index 744a4faa68d086bca754c3b618fca2c1cc450389..663e4c563a5c22b2193ed57e8144cdce46dd72de 100644
--- a/chrome/browser/extensions/extension_service_unittest.cc
+++ b/chrome/browser/extensions/extension_service_unittest.cc
@@ -494,7 +494,7 @@ class MockProviderVisitor
std::unique_ptr<base::Value> json_value =
deserializer.Deserialize(NULL, NULL);
- if (!json_value || !json_value->IsType(base::Value::TYPE_DICTIONARY)) {
+ if (!json_value || !json_value->IsType(base::Value::Type::DICTIONARY)) {
ADD_FAILURE() << "Unable to deserialize json data";
return std::unique_ptr<base::DictionaryValue>();
} else {
« no previous file with comments | « chrome/browser/extensions/extension_management_unittest.cc ('k') | chrome/browser/extensions/external_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698