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

Side by Side Diff: device/bluetooth/test/mock_bluetooth_adapter.h

Issue 848613003: bluetooth: Shutdown BluetoothAdapter before DBus on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: --set-upstream-to=origin/master Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_ 5 #ifndef DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_
6 #define DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_ 6 #define DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 16 matching lines...) Expand all
27 MOCK_METHOD2(AdapterDiscoveringChanged, void(BluetoothAdapter*, bool)); 27 MOCK_METHOD2(AdapterDiscoveringChanged, void(BluetoothAdapter*, bool));
28 MOCK_METHOD2(DeviceAdded, void(BluetoothAdapter*, BluetoothDevice*)); 28 MOCK_METHOD2(DeviceAdded, void(BluetoothAdapter*, BluetoothDevice*));
29 MOCK_METHOD2(DeviceChanged, void(BluetoothAdapter*, BluetoothDevice*)); 29 MOCK_METHOD2(DeviceChanged, void(BluetoothAdapter*, BluetoothDevice*));
30 MOCK_METHOD2(DeviceRemoved, void(BluetoothAdapter*, BluetoothDevice*)); 30 MOCK_METHOD2(DeviceRemoved, void(BluetoothAdapter*, BluetoothDevice*));
31 }; 31 };
32 32
33 MockBluetoothAdapter(); 33 MockBluetoothAdapter();
34 34
35 virtual bool IsInitialized() const { return true; } 35 virtual bool IsInitialized() const { return true; }
36 36
37 #if defined(OS_CHROMEOS)
38 void Shutdown();
39 #endif
37 MOCK_METHOD1(AddObserver, void(BluetoothAdapter::Observer*)); 40 MOCK_METHOD1(AddObserver, void(BluetoothAdapter::Observer*));
38 MOCK_METHOD1(RemoveObserver, void(BluetoothAdapter::Observer*)); 41 MOCK_METHOD1(RemoveObserver, void(BluetoothAdapter::Observer*));
39 MOCK_CONST_METHOD0(GetAddress, std::string()); 42 MOCK_CONST_METHOD0(GetAddress, std::string());
40 MOCK_CONST_METHOD0(GetName, std::string()); 43 MOCK_CONST_METHOD0(GetName, std::string());
41 MOCK_METHOD3(SetName, 44 MOCK_METHOD3(SetName,
42 void(const std::string& name, 45 void(const std::string& name,
43 const base::Closure& callback, 46 const base::Closure& callback,
44 const ErrorCallback& error_callback)); 47 const ErrorCallback& error_callback));
45 MOCK_CONST_METHOD0(IsPresent, bool()); 48 MOCK_CONST_METHOD0(IsPresent, bool());
46 MOCK_CONST_METHOD0(IsPowered, bool()); 49 MOCK_CONST_METHOD0(IsPowered, bool());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 const ErrorCallback& error_callback); 93 const ErrorCallback& error_callback);
91 virtual ~MockBluetoothAdapter(); 94 virtual ~MockBluetoothAdapter();
92 95
93 MOCK_METHOD1(RemovePairingDelegateInternal, 96 MOCK_METHOD1(RemovePairingDelegateInternal,
94 void(BluetoothDevice::PairingDelegate* pairing_delegate)); 97 void(BluetoothDevice::PairingDelegate* pairing_delegate));
95 }; 98 };
96 99
97 } // namespace device 100 } // namespace device
98 101
99 #endif // DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_ 102 #endif // DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_ADAPTER_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_chromeos_unittest.cc ('k') | device/bluetooth/test/mock_bluetooth_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698