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

Side by Side Diff: extensions/browser/api/bluetooth/bluetooth_api.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_ 5 #ifndef EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_
6 #define EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_ 6 #define EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 27 matching lines...) Expand all
38 static BluetoothAPI* Get(content::BrowserContext* context); 38 static BluetoothAPI* Get(content::BrowserContext* context);
39 39
40 static BrowserContextKeyedAPIFactory<BluetoothAPI>* GetFactoryInstance(); 40 static BrowserContextKeyedAPIFactory<BluetoothAPI>* GetFactoryInstance();
41 41
42 explicit BluetoothAPI(content::BrowserContext* context); 42 explicit BluetoothAPI(content::BrowserContext* context);
43 virtual ~BluetoothAPI(); 43 virtual ~BluetoothAPI();
44 44
45 BluetoothEventRouter* event_router(); 45 BluetoothEventRouter* event_router();
46 46
47 // KeyedService implementation. 47 // KeyedService implementation.
48 virtual void Shutdown() OVERRIDE; 48 virtual void Shutdown() override;
49 49
50 // EventRouter::Observer implementation. 50 // EventRouter::Observer implementation.
51 virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE; 51 virtual void OnListenerAdded(const EventListenerInfo& details) override;
52 virtual void OnListenerRemoved(const EventListenerInfo& details) OVERRIDE; 52 virtual void OnListenerRemoved(const EventListenerInfo& details) override;
53 53
54 private: 54 private:
55 // BrowserContextKeyedAPI implementation. 55 // BrowserContextKeyedAPI implementation.
56 friend class BrowserContextKeyedAPIFactory<BluetoothAPI>; 56 friend class BrowserContextKeyedAPIFactory<BluetoothAPI>;
57 static const char* service_name() { return "BluetoothAPI"; } 57 static const char* service_name() { return "BluetoothAPI"; }
58 static const bool kServiceRedirectedInIncognito = true; 58 static const bool kServiceRedirectedInIncognito = true;
59 static const bool kServiceIsNULLWhileTesting = true; 59 static const bool kServiceIsNULLWhileTesting = true;
60 60
61 content::BrowserContext* browser_context_; 61 content::BrowserContext* browser_context_;
62 62
63 // Created lazily on first access. 63 // Created lazily on first access.
64 scoped_ptr<BluetoothEventRouter> event_router_; 64 scoped_ptr<BluetoothEventRouter> event_router_;
65 }; 65 };
66 66
67 namespace core_api { 67 namespace core_api {
68 68
69 class BluetoothGetAdapterStateFunction : public BluetoothExtensionFunction { 69 class BluetoothGetAdapterStateFunction : public BluetoothExtensionFunction {
70 public: 70 public:
71 DECLARE_EXTENSION_FUNCTION("bluetooth.getAdapterState", 71 DECLARE_EXTENSION_FUNCTION("bluetooth.getAdapterState",
72 BLUETOOTH_GETADAPTERSTATE) 72 BLUETOOTH_GETADAPTERSTATE)
73 73
74 protected: 74 protected:
75 virtual ~BluetoothGetAdapterStateFunction(); 75 virtual ~BluetoothGetAdapterStateFunction();
76 76
77 // BluetoothExtensionFunction: 77 // BluetoothExtensionFunction:
78 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; 78 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
79 }; 79 };
80 80
81 class BluetoothGetDevicesFunction : public BluetoothExtensionFunction { 81 class BluetoothGetDevicesFunction : public BluetoothExtensionFunction {
82 public: 82 public:
83 DECLARE_EXTENSION_FUNCTION("bluetooth.getDevices", BLUETOOTH_GETDEVICES) 83 DECLARE_EXTENSION_FUNCTION("bluetooth.getDevices", BLUETOOTH_GETDEVICES)
84 84
85 protected: 85 protected:
86 virtual ~BluetoothGetDevicesFunction(); 86 virtual ~BluetoothGetDevicesFunction();
87 87
88 // BluetoothExtensionFunction: 88 // BluetoothExtensionFunction:
89 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; 89 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
90 }; 90 };
91 91
92 class BluetoothGetDeviceFunction : public BluetoothExtensionFunction { 92 class BluetoothGetDeviceFunction : public BluetoothExtensionFunction {
93 public: 93 public:
94 DECLARE_EXTENSION_FUNCTION("bluetooth.getDevice", BLUETOOTH_GETDEVICE) 94 DECLARE_EXTENSION_FUNCTION("bluetooth.getDevice", BLUETOOTH_GETDEVICE)
95 95
96 // BluetoothExtensionFunction: 96 // BluetoothExtensionFunction:
97 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; 97 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
98 98
99 protected: 99 protected:
100 virtual ~BluetoothGetDeviceFunction(); 100 virtual ~BluetoothGetDeviceFunction();
101 }; 101 };
102 102
103 class BluetoothStartDiscoveryFunction : public BluetoothExtensionFunction { 103 class BluetoothStartDiscoveryFunction : public BluetoothExtensionFunction {
104 public: 104 public:
105 DECLARE_EXTENSION_FUNCTION("bluetooth.startDiscovery", 105 DECLARE_EXTENSION_FUNCTION("bluetooth.startDiscovery",
106 BLUETOOTH_STARTDISCOVERY) 106 BLUETOOTH_STARTDISCOVERY)
107 107
108 protected: 108 protected:
109 virtual ~BluetoothStartDiscoveryFunction() {} 109 virtual ~BluetoothStartDiscoveryFunction() {}
110 110
111 // BluetoothExtensionFunction: 111 // BluetoothExtensionFunction:
112 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; 112 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
113 113
114 private: 114 private:
115 void OnSuccessCallback(); 115 void OnSuccessCallback();
116 void OnErrorCallback(); 116 void OnErrorCallback();
117 }; 117 };
118 118
119 class BluetoothStopDiscoveryFunction : public BluetoothExtensionFunction { 119 class BluetoothStopDiscoveryFunction : public BluetoothExtensionFunction {
120 public: 120 public:
121 DECLARE_EXTENSION_FUNCTION("bluetooth.stopDiscovery", BLUETOOTH_STOPDISCOVERY) 121 DECLARE_EXTENSION_FUNCTION("bluetooth.stopDiscovery", BLUETOOTH_STOPDISCOVERY)
122 122
123 protected: 123 protected:
124 virtual ~BluetoothStopDiscoveryFunction() {} 124 virtual ~BluetoothStopDiscoveryFunction() {}
125 125
126 // BluetoothExtensionFunction: 126 // BluetoothExtensionFunction:
127 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; 127 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
128 128
129 private: 129 private:
130 void OnSuccessCallback(); 130 void OnSuccessCallback();
131 void OnErrorCallback(); 131 void OnErrorCallback();
132 }; 132 };
133 133
134 } // namespace core_api 134 } // namespace core_api
135 } // namespace extensions 135 } // namespace extensions
136 136
137 #endif // EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_ 137 #endif // EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/async_api_function.h ('k') | extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698