OLD | NEW |
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_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
7 | 7 |
8 #include "base/time.h" | 8 #include "base/time.h" |
9 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" | 9 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" |
10 | 10 |
11 namespace chromeos { | 11 namespace chromeos { |
12 | 12 |
| 13 class CrosNetworkWatcher; |
| 14 |
13 class NetworkLibraryImplCros : public NetworkLibraryImplBase { | 15 class NetworkLibraryImplCros : public NetworkLibraryImplBase { |
14 public: | 16 public: |
15 NetworkLibraryImplCros(); | 17 NetworkLibraryImplCros(); |
16 virtual ~NetworkLibraryImplCros(); | 18 virtual ~NetworkLibraryImplCros(); |
17 | 19 |
18 virtual void Init() OVERRIDE; | 20 virtual void Init() OVERRIDE; |
19 virtual bool IsCros() const OVERRIDE; | 21 virtual bool IsCros() const OVERRIDE; |
20 | 22 |
21 ////////////////////////////////////////////////////////////////////////////// | 23 ////////////////////////////////////////////////////////////////////////////// |
22 // NetworkLibraryImplBase implementation. | 24 // NetworkLibraryImplBase implementation. |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 NetworkWatcherMap monitored_devices_; | 212 NetworkWatcherMap monitored_devices_; |
211 | 213 |
212 base::Time wifi_scan_request_time_; | 214 base::Time wifi_scan_request_time_; |
213 | 215 |
214 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); | 216 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); |
215 }; | 217 }; |
216 | 218 |
217 } // namespace chromeos | 219 } // namespace chromeos |
218 | 220 |
219 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 221 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
OLD | NEW |