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

Unified Diff: google_apis/gaia/oauth2_mint_token_flow_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: google_apis/gaia/oauth2_mint_token_flow_unittest.cc
diff --git a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
index 7feb59055d973229d6eebb55d3ad8983f70aeff8..85d0b82bc5232843a15d046951ee24baac763729 100644
--- a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
+++ b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
@@ -180,7 +180,7 @@ class OAuth2MintTokenFlowTest : public testing::Test {
static base::DictionaryValue* ParseJson(const std::string& str) {
std::unique_ptr<base::Value> value = base::JSONReader::Read(str);
EXPECT_TRUE(value.get());
- EXPECT_EQ(base::Value::TYPE_DICTIONARY, value->GetType());
+ EXPECT_EQ(base::Value::Type::DICTIONARY, value->GetType());
return static_cast<base::DictionaryValue*>(value.release());
}
« no previous file with comments | « google_apis/gaia/oauth2_access_token_fetcher_impl.cc ('k') | gpu/tools/compositor_model_bench/render_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698