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

Side by Side Diff: Source/modules/bluetooth/NavigatorBluetooth.h

Issue 652693002: Replace FINAL and OVERRIDE with their C++11 counterparts in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Corrected the Patch Created 6 years, 2 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 | « Source/core/rendering/RenderText.h ('k') | Source/web/PopupContainer.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 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" 8 #include "platform/Supplementable.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class Bluetooth; 13 class Bluetooth;
14 class Navigator; 14 class Navigator;
15 15
16 class NavigatorBluetooth FINAL 16 class NavigatorBluetooth final
17 : public NoBaseWillBeGarbageCollected<NavigatorBluetooth> 17 : public NoBaseWillBeGarbageCollected<NavigatorBluetooth>
18 , public WillBeHeapSupplement<Navigator> { 18 , public WillBeHeapSupplement<Navigator> {
19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorBluetooth); 19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorBluetooth);
20 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorBluetooth); 20 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorBluetooth);
21 public: 21 public:
22 static NavigatorBluetooth& from(Navigator&); 22 static NavigatorBluetooth& from(Navigator&);
23 23
24 static Bluetooth* bluetooth(Navigator&); 24 static Bluetooth* bluetooth(Navigator&);
25 Bluetooth* bluetooth(); 25 Bluetooth* bluetooth();
26 26
27 void trace(Visitor*); 27 void trace(Visitor*);
28 28
29 private: 29 private:
30 NavigatorBluetooth(); 30 NavigatorBluetooth();
31 static const char* supplementName(); 31 static const char* supplementName();
32 32
33 PersistentWillBeMember<Bluetooth> m_bluetooth; 33 PersistentWillBeMember<Bluetooth> m_bluetooth;
34 }; 34 };
35 35
36 } // namespace blink 36 } // namespace blink
37 37
38 #endif // NavigatorBluetooth_h 38 #endif // NavigatorBluetooth_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderText.h ('k') | Source/web/PopupContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698