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

Side by Side Diff: device/bluetooth/bluetooth_profile_win.h

Issue 220323004: device/bluetooth: Rename device::bluetooth_utils::UUID to device::BluetoothUUID (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initialized |empty_device_| in BluetoothDeviceWinTest. Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « device/bluetooth/bluetooth_profile_mac.mm ('k') | device/bluetooth/bluetooth_profile_win.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BLUETOOTH_PROFILE_WIN_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_ 6 #define DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "device/bluetooth/bluetooth_profile.h" 10 #include "device/bluetooth/bluetooth_profile.h"
11 #include "device/bluetooth/bluetooth_uuid.h"
11 12
12 namespace device { 13 namespace device {
13 14
14 class BluetoothDeviceWin; 15 class BluetoothDeviceWin;
15 16
16 class BluetoothProfileWin : public BluetoothProfile { 17 class BluetoothProfileWin : public BluetoothProfile {
17 public: 18 public:
18 // BluetoothProfile override. 19 // BluetoothProfile override.
19 virtual void Unregister() OVERRIDE; 20 virtual void Unregister() OVERRIDE;
20 virtual void SetConnectionCallback( 21 virtual void SetConnectionCallback(
21 const ConnectionCallback& callback) OVERRIDE; 22 const ConnectionCallback& callback) OVERRIDE;
22 23
23 bool Connect(const BluetoothDeviceWin* device); 24 bool Connect(const BluetoothDeviceWin* device);
24 25
25 private: 26 private:
26 friend BluetoothProfile; 27 friend BluetoothProfile;
27 28
28 BluetoothProfileWin(const std::string& uuid, const std::string& name); 29 BluetoothProfileWin(const BluetoothUUID& uuid, const std::string& name);
29 virtual ~BluetoothProfileWin(); 30 virtual ~BluetoothProfileWin();
30 31
31 const std::string uuid_; 32 const BluetoothUUID uuid_;
32 const std::string name_; 33 const std::string name_;
33 ConnectionCallback connection_callback_; 34 ConnectionCallback connection_callback_;
34 }; 35 };
35 36
36 } // namespace device 37 } // namespace device
37 38
38 #endif // DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_ 39 #endif // DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_profile_mac.mm ('k') | device/bluetooth/bluetooth_profile_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698