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

Side by Side Diff: components/proximity_auth/bluetooth_connection.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H 5 #ifndef COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H
6 #define COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H 6 #define COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
11 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
12 #include "components/proximity_auth/connection.h" 13 #include "components/proximity_auth/connection.h"
13 #include "device/bluetooth/bluetooth_adapter.h" 14 #include "device/bluetooth/bluetooth_adapter.h"
14 #include "device/bluetooth/bluetooth_device.h" 15 #include "device/bluetooth/bluetooth_device.h"
15 #include "device/bluetooth/bluetooth_socket.h" 16 #include "device/bluetooth/bluetooth_socket.h"
16 #include "device/bluetooth/bluetooth_uuid.h" 17 #include "device/bluetooth/bluetooth_uuid.h"
17 18
18 namespace net { 19 namespace net {
19 class IOBuffer; 20 class IOBuffer;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 scoped_ptr<WireMessage> pending_message_; 81 scoped_ptr<WireMessage> pending_message_;
81 82
82 base::WeakPtrFactory<BluetoothConnection> weak_ptr_factory_; 83 base::WeakPtrFactory<BluetoothConnection> weak_ptr_factory_;
83 84
84 DISALLOW_COPY_AND_ASSIGN(BluetoothConnection); 85 DISALLOW_COPY_AND_ASSIGN(BluetoothConnection);
85 }; 86 };
86 87
87 } // namespace proximity_auth 88 } // namespace proximity_auth
88 89
89 #endif // COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H 90 #endif // COMPONENTS_PROXIMITY_AUTH_BLUETOOTH_CONNECTION_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698