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

Unified Diff: chrome/browser/chromeos/cros/network_parser.cc

Issue 10554013: Add a CONNECT_REQUESTED state to Network ConnectionState. (Closed) Base URL: http://git.chromium.org/git/chromium/src@master
Patch Set: Rebase Created 8 years, 6 months 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: chrome/browser/chromeos/cros/network_parser.cc
diff --git a/chrome/browser/chromeos/cros/network_parser.cc b/chrome/browser/chromeos/cros/network_parser.cc
index 74fb9e1e2cc1f2c6fb557897d38d6c978c190641..9fcdcaf5ad76a4a521cee43e10bc00fd35a58ef0 100644
--- a/chrome/browser/chromeos/cros/network_parser.cc
+++ b/chrome/browser/chromeos/cros/network_parser.cc
@@ -63,15 +63,15 @@ bool NetworkDeviceParser::UpdateStatus(const std::string& key,
if (index)
*index = found_index;
if (!ParseValue(found_index, value, device)) {
- VLOG(1) << "NetworkDeviceParser: Unhandled key: " << key;
+ VLOG(3) << "NetworkDeviceParser: Unhandled key: " << key;
return false;
}
- if (VLOG_IS_ON(2)) {
+ if (VLOG_IS_ON(3)) {
std::string value_json;
base::JSONWriter::WriteWithOptions(&value,
base::JSONWriter::OPTIONS_PRETTY_PRINT,
&value_json);
- VLOG(2) << "Updated value on device: "
+ VLOG(3) << "Updated value on device: "
<< device->device_path() << "[" << key << "] = " << value_json;
}
return true;
@@ -135,17 +135,17 @@ bool NetworkParser::UpdateStatus(const std::string& key,
*index = found_index;
network->UpdatePropertyMap(found_index, &value);
if (!ParseValue(found_index, value, network)) {
- VLOG(1) << "Unhandled key '" << key << "' in Network: " << network->name()
+ VLOG(3) << "Unhandled key '" << key << "' in Network: " << network->name()
<< " ID: " << network->unique_id()
<< " Type: " << ConnectionTypeToString(network->type());
return false;
}
- if (VLOG_IS_ON(2)) {
+ if (VLOG_IS_ON(3)) {
std::string value_json;
base::JSONWriter::WriteWithOptions(&value,
base::JSONWriter::OPTIONS_PRETTY_PRINT,
&value_json);
- VLOG(2) << "Updated value on network: "
+ VLOG(3) << "Updated value on network: "
<< network->unique_id() << "[" << key << "] = " << value_json;
}
return true;
« no previous file with comments | « chrome/browser/chromeos/cros/network_library_unittest.cc ('k') | chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698