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 CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINU
X_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINUX_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINU
X_H_ | 6 #define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINUX_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
13 #include "base/threading/thread.h" | 13 #include "base/threading/thread.h" |
14 #include "chrome/browser/extensions/api/networking_private/networking_private_de
legate.h" | |
15 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
| 15 #include "extensions/browser/api/networking_private/networking_private_delegate.
h" |
16 | 16 |
17 namespace context { | 17 namespace context { |
18 class BrowserContext; | 18 class BrowserContext; |
19 } | 19 } |
20 | 20 |
21 namespace dbus { | 21 namespace dbus { |
22 class Bus; | 22 class Bus; |
23 class ObjectPath; | 23 class ObjectPath; |
24 class ObjectProxy; | 24 class ObjectProxy; |
25 class Response; | 25 class Response; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 // Holds the current mapping of known networks. Only access on |dbus_thread_|. | 253 // Holds the current mapping of known networks. Only access on |dbus_thread_|. |
254 scoped_ptr<NetworkMap> network_map_; | 254 scoped_ptr<NetworkMap> network_map_; |
255 // Observers to Network Events. | 255 // Observers to Network Events. |
256 ObserverList<NetworkingPrivateDelegateObserver> network_events_observers_; | 256 ObserverList<NetworkingPrivateDelegateObserver> network_events_observers_; |
257 | 257 |
258 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateLinux); | 258 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateLinux); |
259 }; | 259 }; |
260 | 260 |
261 } // namespace extensions | 261 } // namespace extensions |
262 | 262 |
263 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_L
INUX_H_ | 263 #endif // EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINUX_H_ |
OLD | NEW |