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

Unified Diff: chromeos/network/network_sms_handler.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 | « chromeos/geolocation/simple_geolocation_request.cc ('k') | chromeos/network/network_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_sms_handler.cc
diff --git a/chromeos/network/network_sms_handler.cc b/chromeos/network/network_sms_handler.cc
index a12a75f7b87edc2d455457d5072d8d7a3530b5aa..f3eb86eb6fb4d8565dcc3e92ceaa6bd089204a23 100644
--- a/chromeos/network/network_sms_handler.cc
+++ b/chromeos/network/network_sms_handler.cc
@@ -410,7 +410,7 @@ void NetworkSmsHandler::ManagerPropertiesCallback(
}
const base::Value* value;
if (!properties.GetWithoutPathExpansion(shill::kDevicesProperty, &value) ||
- value->GetType() != base::Value::TYPE_LIST) {
+ value->GetType() != base::Value::Type::LIST) {
LOG(ERROR) << "NetworkSmsHandler: No list value for: "
<< shill::kDevicesProperty;
return;
« no previous file with comments | « chromeos/geolocation/simple_geolocation_request.cc ('k') | chromeos/network/network_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698