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

Unified Diff: remoting/host/it2me/it2me_native_messaging_host_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
« no previous file with comments | « remoting/host/it2me/it2me_native_messaging_host.cc ('k') | remoting/host/pairing_registry_delegate_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/it2me/it2me_native_messaging_host_unittest.cc
diff --git a/remoting/host/it2me/it2me_native_messaging_host_unittest.cc b/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
index 14e7ed56bb35e16622ffb4cb073634956d9d0605..072bfb6d2a8ce15b36559c4b8b33b92b0d30f74b 100644
--- a/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
+++ b/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
@@ -360,7 +360,7 @@ It2MeNativeMessagingHostTest::ReadMessageFromOutputPipe() {
}
std::unique_ptr<base::Value> message = base::JSONReader::Read(message_json);
- if (!message || !message->IsType(base::Value::TYPE_DICTIONARY)) {
+ if (!message || !message->IsType(base::Value::Type::DICTIONARY)) {
LOG(ERROR) << "Malformed message:" << message_json;
return nullptr;
}
« no previous file with comments | « remoting/host/it2me/it2me_native_messaging_host.cc ('k') | remoting/host/pairing_registry_delegate_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698