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

Unified Diff: chromeos/dbus/mock_dbus_thread_manager.h

Issue 31513002: dbus: Remove MockShillDeviceClient and MockShillIPConfigClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix the build Created 7 years, 2 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
« no previous file with comments | « chromeos/dbus/fake_shill_ipconfig_client.cc ('k') | chromeos/dbus/mock_dbus_thread_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/mock_dbus_thread_manager.h
diff --git a/chromeos/dbus/mock_dbus_thread_manager.h b/chromeos/dbus/mock_dbus_thread_manager.h
index 23bca2e0c0dfde7b19ff12f0f6aec931e1c50fb7..80ea9cfda7f81f8d47a69204a0c80559b87f1ee9 100644
--- a/chromeos/dbus/mock_dbus_thread_manager.h
+++ b/chromeos/dbus/mock_dbus_thread_manager.h
@@ -26,14 +26,14 @@ class FakeBluetoothDeviceClient;
class FakeBluetoothInputClient;
class FakeBluetoothProfileManagerClient;
class FakeGsmSMSClient;
+class FakeShillDeviceClient;
+class FakeShillIPConfigClient;
class MockCryptohomeClient;
-class MockShillDeviceClient;
-class MockShillIPConfigClient;
+class MockPowerManagerClient;
+class MockSessionManagerClient;
class MockShillManagerClient;
class MockShillProfileClient;
class MockShillServiceClient;
-class MockPowerManagerClient;
-class MockSessionManagerClient;
// This class provides a mock DBusThreadManager with mock clients
// installed. You can customize the behaviors of mock clients with
@@ -103,14 +103,14 @@ class MockDBusThreadManager : public DBusThreadManager {
FakeGsmSMSClient* fake_gsm_sms_client() {
return fake_gsm_sms_client_.get();
}
- MockCryptohomeClient* mock_cryptohome_client() {
- return mock_cryptohome_client_.get();
+ FakeShillDeviceClient* fake_shill_device_client() {
+ return fake_shill_device_client_.get();
}
- MockShillDeviceClient* mock_shill_device_client() {
- return mock_shill_device_client_.get();
+ FakeShillIPConfigClient* fake_shill_ipconfig_client() {
+ return fake_shill_ipconfig_client_.get();
}
- MockShillIPConfigClient* mock_shill_ipconfig_client() {
- return mock_shill_ipconfig_client_.get();
+ MockCryptohomeClient* mock_cryptohome_client() {
+ return mock_cryptohome_client_.get();
}
MockShillManagerClient* mock_shill_manager_client() {
return mock_shill_manager_client_.get();
@@ -138,9 +138,9 @@ class MockDBusThreadManager : public DBusThreadManager {
scoped_ptr<FakeBluetoothProfileManagerClient>
fake_bluetooth_profile_manager_client_;
scoped_ptr<FakeGsmSMSClient> fake_gsm_sms_client_;
+ scoped_ptr<FakeShillDeviceClient> fake_shill_device_client_;
+ scoped_ptr<FakeShillIPConfigClient> fake_shill_ipconfig_client_;
scoped_ptr<MockCryptohomeClient> mock_cryptohome_client_;
- scoped_ptr<MockShillDeviceClient> mock_shill_device_client_;
- scoped_ptr<MockShillIPConfigClient> mock_shill_ipconfig_client_;
scoped_ptr<MockShillManagerClient> mock_shill_manager_client_;
scoped_ptr<MockShillProfileClient> mock_shill_profile_client_;
scoped_ptr<MockShillServiceClient> mock_shill_service_client_;
« no previous file with comments | « chromeos/dbus/fake_shill_ipconfig_client.cc ('k') | chromeos/dbus/mock_dbus_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698