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

Side by Side Diff: device/bluetooth/test/bluetooth_test.cc

Issue 1232613004: The first 3 BluetoothTest.* unit tests now running on Mac as well. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@movCBCM
Patch Set: comment edit Created 5 years, 5 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
« no previous file with comments | « device/bluetooth/test/bluetooth_test.h ('k') | device/bluetooth/test/bluetooth_test_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "device/bluetooth/test/bluetooth_test.h" 5 #include "device/bluetooth/test/bluetooth_test.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "device/bluetooth/bluetooth_adapter.h" 10 #include "device/bluetooth/bluetooth_adapter.h"
11 11
12 namespace device { 12 namespace device {
13 13
14 const std::string BluetoothTestBase::kTestAdapterName = "FakeBluetoothAdapter";
15 const std::string BluetoothTestBase::kTestAdapterAddress = "A1:B2:C3:D4:E5:F6";
16
14 BluetoothTestBase::BluetoothTestBase() { 17 BluetoothTestBase::BluetoothTestBase() {
15 } 18 }
16 19
17 BluetoothTestBase::~BluetoothTestBase() { 20 BluetoothTestBase::~BluetoothTestBase() {
18 } 21 }
19 22
20 void BluetoothTestBase::Callback() { 23 void BluetoothTestBase::Callback() {
21 ++callback_count_; 24 ++callback_count_;
22 } 25 }
23 26
(...skipping 15 matching lines...) Expand all
39 BluetoothTestBase::GetDiscoverySessionCallback() { 42 BluetoothTestBase::GetDiscoverySessionCallback() {
40 return base::Bind(&BluetoothTestBase::DiscoverySessionCallback, 43 return base::Bind(&BluetoothTestBase::DiscoverySessionCallback,
41 base::Unretained(this)); 44 base::Unretained(this));
42 } 45 }
43 46
44 BluetoothAdapter::ErrorCallback BluetoothTestBase::GetErrorCallback() { 47 BluetoothAdapter::ErrorCallback BluetoothTestBase::GetErrorCallback() {
45 return base::Bind(&BluetoothTestBase::ErrorCallback, base::Unretained(this)); 48 return base::Bind(&BluetoothTestBase::ErrorCallback, base::Unretained(this));
46 } 49 }
47 50
48 } // namespace device 51 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/test/bluetooth_test.h ('k') | device/bluetooth/test/bluetooth_test_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698