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 NavigatorBluetooth_h | 5 #ifndef NavigatorBluetooth_h |
6 #define NavigatorBluetooth_h | 6 #define NavigatorBluetooth_h |
7 | 7 |
| 8 #include "platform/Supplementable.h" |
| 9 #include "platform/heap/Handle.h" |
| 10 |
8 namespace blink { | 11 namespace blink { |
9 | 12 |
10 class NavigatorBluetooth { | 13 class Bluetooth; |
| 14 class Navigator; |
| 15 |
| 16 class NavigatorBluetooth FINAL |
| 17 : public NoBaseWillBeGarbageCollected<NavigatorBluetooth> |
| 18 , public WillBeHeapSupplement<Navigator> { |
| 19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorBluetooth); |
| 20 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorBluetooth); |
11 public: | 21 public: |
12 virtual ~NavigatorBluetooth() { } | 22 static NavigatorBluetooth& from(Navigator&); |
| 23 |
| 24 static Bluetooth* bluetooth(Navigator&); |
| 25 Bluetooth* bluetooth(); |
| 26 |
| 27 void trace(Visitor*); |
| 28 |
| 29 private: |
| 30 NavigatorBluetooth(); |
| 31 static const char* supplementName(); |
| 32 |
| 33 PersistentWillBeMember<Bluetooth> m_bluetooth; |
13 }; | 34 }; |
14 | 35 |
15 } // namespace blink | 36 } // namespace blink |
16 | 37 |
17 #endif // NavigatorBluetooth_h | 38 #endif // NavigatorBluetooth_h |
OLD | NEW |