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

Unified Diff: components/webcrypto/algorithms/test_helpers.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/webcrypto/algorithms/test_helpers.cc
diff --git a/components/webcrypto/algorithms/test_helpers.cc b/components/webcrypto/algorithms/test_helpers.cc
index 8751735496e94c18fc08f153666312b9e7cc339a..8138f0d5493d9739a7c0508306a4c4b870794860 100644
--- a/components/webcrypto/algorithms/test_helpers.cc
+++ b/components/webcrypto/algorithms/test_helpers.cc
@@ -391,7 +391,7 @@ std::unique_ptr<base::DictionaryValue> GetJwkDictionary(
json.size());
std::unique_ptr<base::Value> value = base::JSONReader::Read(json_string);
EXPECT_TRUE(value.get());
- EXPECT_TRUE(value->IsType(base::Value::TYPE_DICTIONARY));
+ EXPECT_TRUE(value->IsType(base::Value::Type::DICTIONARY));
return std::unique_ptr<base::DictionaryValue>(
static_cast<base::DictionaryValue*>(value.release()));

Powered by Google App Engine
This is Rietveld 408576698