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

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

Issue 1226353004: Generate all extension schema namespaces as "api" and instead vary the generated bundle names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 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 ~BluetoothGetAdapterStateFunction() override; 75 ~BluetoothGetAdapterStateFunction() override;
76 76
77 // BluetoothExtensionFunction: 77 // BluetoothExtensionFunction:
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 ~BluetoothStopDiscoveryFunction() override {} 124 ~BluetoothStopDiscoveryFunction() override {}
125 125
126 // BluetoothExtensionFunction: 126 // BluetoothExtensionFunction:
127 bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override; 127 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 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/audio/audio_service_chromeos.cc ('k') | extensions/browser/api/bluetooth/bluetooth_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698