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

Unified Diff: chrome/test/base/extension_js_browser_test.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/test/base/extension_js_browser_test.cc
diff --git a/chrome/test/base/extension_js_browser_test.cc b/chrome/test/base/extension_js_browser_test.cc
index ca248f7a03ca42b34d3f9700055dc39c993beb95..48c9c9b4f61aa872d0793bcfe83e11474724d23f 100644
--- a/chrome/test/base/extension_js_browser_test.cc
+++ b/chrome/test/base/extension_js_browser_test.cc
@@ -53,7 +53,7 @@ bool ExtensionJSBrowserTest::RunJavascriptTestF(bool is_async,
script);
std::unique_ptr<base::Value> value_result = base::JSONReader::Read(result);
- CHECK_EQ(base::Value::TYPE_DICTIONARY, value_result->GetType());
+ CHECK_EQ(base::Value::Type::DICTIONARY, value_result->GetType());
base::DictionaryValue* dict_value =
static_cast<base::DictionaryValue*>(value_result.get());
bool test_result;
« no previous file with comments | « chrome/renderer/extensions/cast_streaming_native_handler.cc ('k') | chrome/test/chromedriver/capabilities.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698