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

Unified Diff: chromeos/dbus/mock_dbus_thread_manager_without_gmock.h

Issue 13890017: dbus:Add FakeImageBurnerClient FakeSystemClockClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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
« no previous file with comments | « chromeos/dbus/image_burner_client.cc ('k') | chromeos/dbus/mock_dbus_thread_manager_without_gmock.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_without_gmock.h
diff --git a/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h b/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h
index 2f0db0ba5fe3e85939d7ab624b265a4589dca4ee..ff1e7365cd6d879af34199d4da01bba4ea62cfda 100644
--- a/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h
+++ b/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h
@@ -27,6 +27,8 @@ class FakeBluetoothProfileManagerClient;
class FakeCrosDisksClient;
class FakeCryptohomeClient;
class FakeShillManagerClient;
+class FakeImageBurnerClient;
+class FakeSystemClockClient;
class MockIBusClient;
class MockIBusConfigClient;
class MockIBusEngineFactoryService;
@@ -125,6 +127,14 @@ class MockDBusThreadManagerWithoutGMock : public DBusThreadManager {
return fake_shill_manager_client_.get();
}
+ FakeImageBurnerClient* fake_image_burner_client() {
+ return fake_image_burner_client_.get();
+ }
+
+ FakeSystemClockClient* fake_system_clock_client() {
+ return fake_system_clock_client_.get();
+ }
+
MockIBusClient* mock_ibus_client() {
return mock_ibus_client_.get();
}
@@ -163,7 +173,9 @@ class MockDBusThreadManagerWithoutGMock : public DBusThreadManager {
fake_bluetooth_profile_manager_client_;
scoped_ptr<FakeCrosDisksClient> fake_cros_disks_client_;
scoped_ptr<FakeCryptohomeClient> fake_cryptohome_client_;
+ scoped_ptr<FakeImageBurnerClient> fake_image_burner_client_;
scoped_ptr<FakeShillManagerClient> fake_shill_manager_client_;
+ scoped_ptr<FakeSystemClockClient> fake_system_clock_client_;
scoped_ptr<MockIBusClient> mock_ibus_client_;
scoped_ptr<MockIBusConfigClient> mock_ibus_config_client_;
« no previous file with comments | « chromeos/dbus/image_burner_client.cc ('k') | chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698