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

Unified Diff: chromeos/dbus/fake_shill_device_client.cc

Issue 1059033002: Implement networkingPrivate.getDeviceStates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test Created 5 years, 8 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/fake_shill_device_client.cc
diff --git a/chromeos/dbus/fake_shill_device_client.cc b/chromeos/dbus/fake_shill_device_client.cc
index a856bb297dd0f921d3a3847d8ff502dcece94e91..6fe675cfd3b310bac3283adb869dcd908b2df46a 100644
--- a/chromeos/dbus/fake_shill_device_client.cc
+++ b/chromeos/dbus/fake_shill_device_client.cc
@@ -402,9 +402,9 @@ void FakeShillDeviceClient::SetDeviceProperty(const std::string& device_path,
const base::Value& value) {
VLOG(1) << "SetDeviceProperty: " << device_path
<< ": " << name << " = " << value;
- SetProperty(dbus::ObjectPath(device_path), name, value,
- base::Bind(&base::DoNothing),
- base::Bind(&ErrorFunction, device_path));
+ SetPropertyInternal(dbus::ObjectPath(device_path), name, value,
+ base::Bind(&base::DoNothing),
+ base::Bind(&ErrorFunction, device_path));
}
std::string FakeShillDeviceClient::GetDevicePathForType(

Powered by Google App Engine
This is Rietveld 408576698