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

Unified Diff: chromeos/dbus/mock_dbus_thread_manager_without_gmock.h

Issue 14048007: Bluetooth: D-Bus client interface for org.bluez.Input1 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fake impl 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
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 04853ed434367494142f1b16128be27ad0a4bfb4..8f462d24d05386ea4fec91b433a95e8f06fb851f 100644
--- a/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h
+++ b/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h
@@ -19,6 +19,7 @@ class ObjectPath;
namespace chromeos {
class DBusThreadManagerObserver;
+class FakeBluetoothInputClient;
class MockIBusClient;
class MockIBusConfigClient;
class MockIBusEngineFactoryService;
@@ -85,6 +86,10 @@ class MockDBusThreadManagerWithoutGMock : public DBusThreadManager {
const dbus::ObjectPath& object_path) OVERRIDE;
virtual IBusPanelService* GetIBusPanelService() OVERRIDE;
+ FakeBluetoothInputClient* fake_bluetooth_input_client() {
+ return fake_bluetooth_input_client_.get();
+ }
+
MockIBusClient* mock_ibus_client() {
return mock_ibus_client_.get();
}
@@ -114,6 +119,7 @@ class MockDBusThreadManagerWithoutGMock : public DBusThreadManager {
}
private:
+ scoped_ptr<FakeBluetoothInputClient> fake_bluetooth_input_client_;
scoped_ptr<MockIBusClient> mock_ibus_client_;
scoped_ptr<MockIBusConfigClient> mock_ibus_config_client_;
scoped_ptr<MockIBusInputContextClient> mock_ibus_input_context_client_;

Powered by Google App Engine
This is Rietveld 408576698