| 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
|
| deleted file mode 100644
|
| index d8b69efa2df5409221e3453bcf3261e21b291130..0000000000000000000000000000000000000000
|
| --- a/chromeos/dbus/mock_dbus_thread_manager.h
|
| +++ /dev/null
|
| @@ -1,172 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_
|
| -#define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_
|
| -
|
| -#include <string>
|
| -
|
| -#include "base/observer_list.h"
|
| -#include "chromeos/dbus/dbus_thread_manager.h"
|
| -#include "testing/gmock/include/gmock/gmock.h"
|
| -
|
| -namespace dbus {
|
| -
|
| -class Bus;
|
| -
|
| -} // namespace dbus
|
| -
|
| -namespace chromeos {
|
| -
|
| -class DBusThreadManagerObserver;
|
| -class FakeBluetoothAdapterClient;
|
| -class FakeBluetoothAgentManagerClient;
|
| -class FakeBluetoothDeviceClient;
|
| -class FakeBluetoothInputClient;
|
| -class FakeBluetoothProfileManagerClient;
|
| -class FakeGsmSMSClient;
|
| -class FakeNfcAdapterClient;
|
| -class FakeNfcDeviceClient;
|
| -class FakeNfcManagerClient;
|
| -class FakeNfcTagClient;
|
| -class FakeShillDeviceClient;
|
| -class FakeShillIPConfigClient;
|
| -class MockCryptohomeClient;
|
| -class MockPowerManagerClient;
|
| -class MockSessionManagerClient;
|
| -class MockShillManagerClient;
|
| -class MockShillProfileClient;
|
| -class MockShillServiceClient;
|
| -
|
| -// This class provides a mock DBusThreadManager with mock clients
|
| -// installed. You can customize the behaviors of mock clients with
|
| -// mock_foo_client() functions.
|
| -// Please avoid adding more GMock in this class. We have an ongoing effort to
|
| -// remove GMock dependency. TODO(haruki): crbug.com/223061.
|
| -class MockDBusThreadManager : public DBusThreadManager {
|
| - public:
|
| - MockDBusThreadManager();
|
| - virtual ~MockDBusThreadManager();
|
| -
|
| - void AddObserver(DBusThreadManagerObserver* observer) OVERRIDE;
|
| - void RemoveObserver(DBusThreadManagerObserver* observer) OVERRIDE;
|
| - MOCK_METHOD2(InitIBusBus, void(const std::string& ibus_address,
|
| - const base::Closure& closure));
|
| - MOCK_METHOD0(GetSystemBus, dbus::Bus*(void));
|
| - MOCK_METHOD0(GetBluetoothAdapterClient, BluetoothAdapterClient*(void));
|
| - MOCK_METHOD0(GetBluetoothAgentManagerClient,
|
| - BluetoothAgentManagerClient*(void));
|
| - MOCK_METHOD0(GetBluetoothDeviceClient, BluetoothDeviceClient*(void));
|
| - MOCK_METHOD0(GetBluetoothInputClient, BluetoothInputClient*(void));
|
| - MOCK_METHOD0(GetBluetoothProfileManagerClient,
|
| - BluetoothProfileManagerClient*(void));
|
| - MOCK_METHOD0(GetCrasAudioClient, CrasAudioClient*(void));
|
| - MOCK_METHOD0(GetCrosDisksClient, CrosDisksClient*(void));
|
| - MOCK_METHOD0(GetCryptohomeClient, CryptohomeClient*(void));
|
| - MOCK_METHOD0(GetDebugDaemonClient, DebugDaemonClient*(void));
|
| - MOCK_METHOD0(GetShillDeviceClient, ShillDeviceClient*(void));
|
| - MOCK_METHOD0(GetShillIPConfigClient, ShillIPConfigClient*(void));
|
| - MOCK_METHOD0(GetShillManagerClient, ShillManagerClient*(void));
|
| - MOCK_METHOD0(GetShillProfileClient, ShillProfileClient*(void));
|
| - MOCK_METHOD0(GetShillServiceClient, ShillServiceClient*(void));
|
| - MOCK_METHOD0(GetGsmSMSClient, GsmSMSClient*(void));
|
| - MOCK_METHOD0(GetImageBurnerClient, ImageBurnerClient*(void));
|
| - MOCK_METHOD0(GetIntrospectableClient, IntrospectableClient*(void));
|
| - MOCK_METHOD0(GetModemMessagingClient, ModemMessagingClient*(void));
|
| - MOCK_METHOD0(GetNfcAdapterClient, NfcAdapterClient*(void));
|
| - MOCK_METHOD0(GetNfcDeviceClient, NfcDeviceClient*(void));
|
| - MOCK_METHOD0(GetNfcManagerClient, NfcManagerClient*(void));
|
| - MOCK_METHOD0(GetNfcTagClient, NfcTagClient*(void));
|
| - MOCK_METHOD0(GetPermissionBrokerClient, PermissionBrokerClient*(void));
|
| - MOCK_METHOD0(GetPowerManagerClient, PowerManagerClient*(void));
|
| - MOCK_METHOD0(GetPowerPolicyController, PowerPolicyController*(void));
|
| - MOCK_METHOD0(GetSessionManagerClient, SessionManagerClient*(void));
|
| - MOCK_METHOD0(GetSMSClient, SMSClient*(void));
|
| - MOCK_METHOD0(GetSystemClockClient, SystemClockClient*(void));
|
| - MOCK_METHOD0(GetUpdateEngineClient, UpdateEngineClient*(void));
|
| - MOCK_METHOD0(GetIBusClient, IBusClient*(void));
|
| -
|
| - FakeBluetoothAdapterClient* fake_bluetooth_adapter_client() {
|
| - return fake_bluetooth_adapter_client_.get();
|
| - }
|
| - FakeBluetoothAgentManagerClient* fake_bluetooth_agent_manager_client() {
|
| - return fake_bluetooth_agent_manager_client_.get();
|
| - }
|
| - FakeBluetoothDeviceClient* fake_bluetooth_device_client() {
|
| - return fake_bluetooth_device_client_.get();
|
| - }
|
| - FakeBluetoothInputClient* fake_bluetooth_input_client() {
|
| - return fake_bluetooth_input_client_.get();
|
| - }
|
| - FakeBluetoothProfileManagerClient* fake_bluetooth_profile_manager_client() {
|
| - return fake_bluetooth_profile_manager_client_.get();
|
| - }
|
| - FakeGsmSMSClient* fake_gsm_sms_client() {
|
| - return fake_gsm_sms_client_.get();
|
| - }
|
| - FakeNfcAdapterClient* fake_nfc_adapter_client() {
|
| - return fake_nfc_adapter_client_.get();
|
| - }
|
| - FakeNfcDeviceClient* fake_nfc_device_client() {
|
| - return fake_nfc_device_client_.get();
|
| - }
|
| - FakeNfcManagerClient* fake_nfc_manager_client() {
|
| - return fake_nfc_manager_client_.get();
|
| - }
|
| - FakeNfcTagClient* fake_nfc_tag_client() {
|
| - return fake_nfc_tag_client_.get();
|
| - }
|
| - FakeShillDeviceClient* fake_shill_device_client() {
|
| - return fake_shill_device_client_.get();
|
| - }
|
| - FakeShillIPConfigClient* fake_shill_ipconfig_client() {
|
| - return fake_shill_ipconfig_client_.get();
|
| - }
|
| - MockCryptohomeClient* mock_cryptohome_client() {
|
| - return mock_cryptohome_client_.get();
|
| - }
|
| - MockShillManagerClient* mock_shill_manager_client() {
|
| - return mock_shill_manager_client_.get();
|
| - }
|
| - MockShillProfileClient* mock_shill_profile_client() {
|
| - return mock_shill_profile_client_.get();
|
| - }
|
| - MockShillServiceClient* mock_shill_service_client() {
|
| - return mock_shill_service_client_.get();
|
| - }
|
| - MockSessionManagerClient* mock_session_manager_client() {
|
| - return mock_session_manager_client_.get();
|
| - }
|
| -
|
| - private:
|
| - // Note: Keep this before other members so they can call AddObserver() in
|
| - // their c'tors.
|
| - ObserverList<DBusThreadManagerObserver> observers_;
|
| -
|
| - scoped_ptr<FakeBluetoothAdapterClient> fake_bluetooth_adapter_client_;
|
| - scoped_ptr<FakeBluetoothAgentManagerClient>
|
| - fake_bluetooth_agent_manager_client_;
|
| - scoped_ptr<FakeBluetoothDeviceClient> fake_bluetooth_device_client_;
|
| - scoped_ptr<FakeBluetoothInputClient> fake_bluetooth_input_client_;
|
| - scoped_ptr<FakeBluetoothProfileManagerClient>
|
| - fake_bluetooth_profile_manager_client_;
|
| - scoped_ptr<FakeGsmSMSClient> fake_gsm_sms_client_;
|
| - scoped_ptr<FakeNfcAdapterClient> fake_nfc_adapter_client_;
|
| - scoped_ptr<FakeNfcDeviceClient> fake_nfc_device_client_;
|
| - scoped_ptr<FakeNfcManagerClient> fake_nfc_manager_client_;
|
| - scoped_ptr<FakeNfcTagClient> fake_nfc_tag_client_;
|
| - scoped_ptr<FakeShillDeviceClient> fake_shill_device_client_;
|
| - scoped_ptr<FakeShillIPConfigClient> fake_shill_ipconfig_client_;
|
| - scoped_ptr<MockCryptohomeClient> mock_cryptohome_client_;
|
| - scoped_ptr<MockShillManagerClient> mock_shill_manager_client_;
|
| - scoped_ptr<MockShillProfileClient> mock_shill_profile_client_;
|
| - scoped_ptr<MockShillServiceClient> mock_shill_service_client_;
|
| - scoped_ptr<MockSessionManagerClient> mock_session_manager_client_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManager);
|
| -};
|
| -
|
| -} // namespace chromeos
|
| -
|
| -#endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_H_
|
|
|