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/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; | 13 class CrosNetworkWatcher; |
14 | 14 |
15 class NetworkLibraryImplCros : public NetworkLibraryImplBase { | 15 class NetworkLibraryImplCros : public NetworkLibraryImplBase { |
16 public: | 16 public: |
17 NetworkLibraryImplCros(); | 17 NetworkLibraryImplCros(); |
18 virtual ~NetworkLibraryImplCros(); | 18 virtual ~NetworkLibraryImplCros(); |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 206 |
207 // Map of monitored devices. | 207 // Map of monitored devices. |
208 NetworkWatcherMap monitored_devices_; | 208 NetworkWatcherMap monitored_devices_; |
209 | 209 |
210 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); | 210 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); |
211 }; | 211 }; |
212 | 212 |
213 } // namespace chromeos | 213 } // namespace chromeos |
214 | 214 |
215 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 215 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
OLD | NEW |