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

Unified Diff: remoting/test/host_list_fetcher.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 | « remoting/host/setup/service_client.cc ('k') | remoting/test/remote_host_info_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/host_list_fetcher.cc
diff --git a/remoting/test/host_list_fetcher.cc b/remoting/test/host_list_fetcher.cc
index 1b5dc2adf0751871ab5239dae57d8fb29b15c47f..09fc3d52da87795128936574ac8a9d7d5c3f5b79 100644
--- a/remoting/test/host_list_fetcher.cc
+++ b/remoting/test/host_list_fetcher.cc
@@ -62,7 +62,7 @@ bool HostListFetcher::ProcessResponse(
std::unique_ptr<base::Value> response_value(
base::JSONReader::Read(response_string));
if (!response_value ||
- !response_value->IsType(base::Value::TYPE_DICTIONARY)) {
+ !response_value->IsType(base::Value::Type::DICTIONARY)) {
LOG(ERROR) << "Failed to parse response string to JSON";
return false;
}
« no previous file with comments | « remoting/host/setup/service_client.cc ('k') | remoting/test/remote_host_info_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698