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

Side by Side Diff: chrome/browser/extensions/bluetooth_event_router.h

Issue 11369055: Delayed adding BluetoothEventRouter as BluetoothAdapter observer until when the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed BluetoothApiTest Created 8 years, 1 month 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 | Annotate | Revision Log
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 CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_
6 #define CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string>
9 10
10 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_vector.h" 12 #include "base/memory/scoped_vector.h"
12 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/common/extensions/api/bluetooth.h" 14 #include "chrome/common/extensions/api/bluetooth.h"
14 #include "device/bluetooth/bluetooth_adapter.h" 15 #include "device/bluetooth/bluetooth_adapter.h"
15 #include "device/bluetooth/bluetooth_socket.h" 16 #include "device/bluetooth/bluetooth_socket.h"
16 17
17 namespace extensions { 18 namespace extensions {
18 19
19 class ExtensionBluetoothEventRouter 20 class ExtensionBluetoothEventRouter
20 : public device::BluetoothAdapter::Observer { 21 : public device::BluetoothAdapter::Observer {
21 public: 22 public:
22 explicit ExtensionBluetoothEventRouter(Profile* profile); 23 explicit ExtensionBluetoothEventRouter(Profile* profile);
24
25 // Constructor for testing.
26 ExtensionBluetoothEventRouter(
27 Profile* profile, device::BluetoothAdapter* adapter);
28
23 virtual ~ExtensionBluetoothEventRouter(); 29 virtual ~ExtensionBluetoothEventRouter();
24 30
25 // adapter() will return NULL if the bluetooth adapter is not supported in the 31 // adapter() will return NULL if the bluetooth adapter is not supported in the
26 // current platform. 32 // current platform.
27 const device::BluetoothAdapter* adapter() const { 33 const device::BluetoothAdapter* adapter() const {
28 return adapter_.get(); 34 return adapter_.get();
29 } 35 }
30 36
31 // GetMutableAdapter will return NULL if the bluetooth adapter is not 37 // GetMutableAdapter will return NULL if the bluetooth adapter is not
32 // supported in the current platform. 38 // supported in the current platform.
33 device::BluetoothAdapter* GetMutableAdapter() { 39 // This function will also add |this| as an observer to |adapter_|.
34 return adapter_.get(); 40 device::BluetoothAdapter* GetMutableAdapter();
35 } 41
42 // Add |this| as an observer to |adapter_| if the added event is a bluetooth
43 // event.
44 void OnEventListenerAdded(const std::string& event_name);
36 45
37 // Register the BluetoothSocket |socket| for use by the extensions system. 46 // Register the BluetoothSocket |socket| for use by the extensions system.
38 // This class will hold onto the socket for its lifetime, or until 47 // This class will hold onto the socket for its lifetime, or until
39 // ReleaseSocket is called for the socket. Returns an id for the socket. 48 // ReleaseSocket is called for the socket. Returns an id for the socket.
40 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket); 49 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket);
41 50
42 // Release the BluetoothSocket corresponding to |id|. Returns true if 51 // Release the BluetoothSocket corresponding to |id|. Returns true if
43 // the socket was found and released, false otherwise. 52 // the socket was found and released, false otherwise.
44 bool ReleaseSocket(int id); 53 bool ReleaseSocket(int id);
45 54
(...skipping 21 matching lines...) Expand all
67 virtual void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter, 76 virtual void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter,
68 bool discovering) OVERRIDE; 77 bool discovering) OVERRIDE;
69 virtual void DeviceAdded(device::BluetoothAdapter* adapter, 78 virtual void DeviceAdded(device::BluetoothAdapter* adapter,
70 device::BluetoothDevice* device) OVERRIDE; 79 device::BluetoothDevice* device) OVERRIDE;
71 80
72 // Exposed for testing. 81 // Exposed for testing.
73 void SetAdapterForTest(device::BluetoothAdapter* adapter) { 82 void SetAdapterForTest(device::BluetoothAdapter* adapter) {
74 adapter_ = adapter; 83 adapter_ = adapter;
75 } 84 }
76 private: 85 private:
86 static bool IsBluetoothEvent(const std::string& event_name);
87
77 void DispatchBooleanValueEvent(const char* event_name, bool value); 88 void DispatchBooleanValueEvent(const char* event_name, bool value);
78 89
79 bool send_discovery_events_; 90 bool send_discovery_events_;
80 bool responsible_for_discovery_; 91 bool responsible_for_discovery_;
81 92
82 Profile* profile_; 93 Profile* profile_;
83 scoped_refptr<device::BluetoothAdapter> adapter_; 94 scoped_refptr<device::BluetoothAdapter> adapter_;
84 95
85 // The next id to use for referring to a BluetoothSocket. We avoid using 96 // The next id to use for referring to a BluetoothSocket. We avoid using
86 // the fd of the socket because we don't want to leak that information to 97 // the fd of the socket because we don't want to leak that information to
87 // the extension javascript. 98 // the extension javascript.
88 int next_socket_id_; 99 int next_socket_id_;
89 100
90 typedef std::map<int, scoped_refptr<device::BluetoothSocket> > SocketMap; 101 typedef std::map<int, scoped_refptr<device::BluetoothSocket> > SocketMap;
91 SocketMap socket_map_; 102 SocketMap socket_map_;
92 103
93 typedef ScopedVector<extensions::api::bluetooth::Device> 104 typedef ScopedVector<extensions::api::bluetooth::Device>
94 DeviceList; 105 DeviceList;
95 DeviceList discovered_devices_; 106 DeviceList discovered_devices_;
96 107
97 DISALLOW_COPY_AND_ASSIGN(ExtensionBluetoothEventRouter); 108 DISALLOW_COPY_AND_ASSIGN(ExtensionBluetoothEventRouter);
98 }; 109 };
99 110
100 } // namespace extensions 111 } // namespace extensions
101 112
102 #endif // CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ 113 #endif // CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698