OLD | NEW |
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 CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ |
6 #define CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ | 6 #define CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <string> | 11 #include <string> |
12 #include <unordered_map> | 12 #include <unordered_map> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "base/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "mojo/public/cpp/bindings/associated_binding.h" | 20 #include "mojo/public/cpp/bindings/associated_binding.h" |
21 #include "third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h" | 21 #include "third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h" |
22 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" | 22 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" |
23 | 23 |
24 namespace blink { | 24 namespace blink { |
25 class WebBluetoothRemoteGATTCharacteristic; | 25 class WebBluetoothRemoteGATTCharacteristic; |
26 } | 26 } |
27 | 27 |
28 namespace content { | 28 namespace content { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 const scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 137 const scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
138 const int frame_routing_id_; | 138 const int frame_routing_id_; |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(WebBluetoothImpl); | 140 DISALLOW_COPY_AND_ASSIGN(WebBluetoothImpl); |
141 }; | 141 }; |
142 | 142 |
143 } // namespace content | 143 } // namespace content |
144 | 144 |
145 #endif // CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ | 145 #endif // CONTENT_RENDERER_BLUETOOTH_WEB_BLUETOOTH_IMPL_H_ |
OLD | NEW |