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

Unified Diff: chromeos/dbus/shill_manager_client_stub.cc

Issue 23522013: Show ****** in wifi passphrase field (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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: chromeos/dbus/shill_manager_client_stub.cc
diff --git a/chromeos/dbus/shill_manager_client_stub.cc b/chromeos/dbus/shill_manager_client_stub.cc
index 061487488e93375a8dc5bf40c496db1d3724dee9..47d614d3618fb29f2673ddf203aede1b371c8b21 100644
--- a/chromeos/dbus/shill_manager_client_stub.cc
+++ b/chromeos/dbus/shill_manager_client_stub.cc
@@ -213,9 +213,8 @@ void ShillManagerClientStub::ConfigureService(
std::string guid;
std::string type;
- if (!properties.GetString(flimflam::kGuidProperty, &guid) ||
- !properties.GetString(flimflam::kTypeProperty, &type)) {
- LOG(ERROR) << "ConfigureService requies GUID and Type to be defined";
+ if (!properties.GetString(flimflam::kTypeProperty, &type)) {
+ LOG(ERROR) << "ConfigureService requires Type to be defined";
// If the properties aren't filled out completely, then just return an empty
// object path.
base::MessageLoop::current()->PostTask(

Powered by Google App Engine
This is Rietveld 408576698