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 "chrome/browser/chromeos/cros/network_library_impl_base.h" | 8 #include "chrome/browser/chromeos/cros/network_library_impl_base.h" |
9 | 9 |
10 namespace chromeos { | 10 namespace chromeos { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 static void NetworkManagerStatusChangedHandler(void* object, | 119 static void NetworkManagerStatusChangedHandler(void* object, |
120 const std::string& path, | 120 const std::string& path, |
121 const std::string& key, | 121 const std::string& key, |
122 const base::Value& value); | 122 const base::Value& value); |
123 static void NetworkManagerUpdate(void* object, | 123 static void NetworkManagerUpdate(void* object, |
124 const std::string& manager_path, | 124 const std::string& manager_path, |
125 const base::DictionaryValue* properties); | 125 const base::DictionaryValue* properties); |
126 | 126 |
127 static void DataPlanUpdateHandler( | 127 static void DataPlanUpdateHandler( |
128 void* object, | 128 void* object, |
129 const char* modem_service_path, | 129 const std::string& modem_service_path, |
130 const chromeos::CellularDataPlanList* data_plan_list); | 130 CellularDataPlanVector* data_plan_vector); |
131 | 131 |
132 static void NetworkServiceUpdate(void* object, | 132 static void NetworkServiceUpdate(void* object, |
133 const std::string& service_path, | 133 const std::string& service_path, |
134 const base::DictionaryValue* properties); | 134 const base::DictionaryValue* properties); |
135 static void RememberedNetworkServiceUpdate( | 135 static void RememberedNetworkServiceUpdate( |
136 void* object, | 136 void* object, |
137 const std::string& service_path, | 137 const std::string& service_path, |
138 const base::DictionaryValue* properties); | 138 const base::DictionaryValue* properties); |
139 static void ProfileUpdate(void* object, | 139 static void ProfileUpdate(void* object, |
140 const std::string& profile_path, | 140 const std::string& profile_path, |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 | 194 |
195 // Map of monitored devices. | 195 // Map of monitored devices. |
196 NetworkWatcherMap monitored_devices_; | 196 NetworkWatcherMap monitored_devices_; |
197 | 197 |
198 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); | 198 DISALLOW_COPY_AND_ASSIGN(NetworkLibraryImplCros); |
199 }; | 199 }; |
200 | 200 |
201 } // namespace chromeos | 201 } // namespace chromeos |
202 | 202 |
203 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ | 203 #endif // CHROME_BROWSER_CHROMEOS_CROS_NETWORK_LIBRARY_IMPL_CROS_H_ |
OLD | NEW |