| 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_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // Updates the display of network connection information for the details page | 80 // Updates the display of network connection information for the details page |
| 81 // if visible. | 81 // if visible. |
| 82 void UpdateConnectionData(const std::string& service_path); | 82 void UpdateConnectionData(const std::string& service_path); |
| 83 void UpdateConnectionDataCallback( | 83 void UpdateConnectionDataCallback( |
| 84 const std::string& service_path, | 84 const std::string& service_path, |
| 85 const base::DictionaryValue& shill_properties); | 85 const base::DictionaryValue& shill_properties); |
| 86 // Called when carrier data has been updated to informs the JS. | 86 // Called when carrier data has been updated to informs the JS. |
| 87 void UpdateCarrier(); | 87 void UpdateCarrier(); |
| 88 | 88 |
| 89 // NetworkStateHandlerObserver | 89 // NetworkStateHandlerObserver |
| 90 virtual void NetworkManagerChanged() OVERRIDE; | 90 virtual void DeviceListChanged() OVERRIDE; |
| 91 virtual void NetworkListChanged() OVERRIDE; | 91 virtual void NetworkListChanged() OVERRIDE; |
| 92 virtual void NetworkConnectionStateChanged( | 92 virtual void NetworkConnectionStateChanged( |
| 93 const chromeos::NetworkState* network) OVERRIDE; | 93 const chromeos::NetworkState* network) OVERRIDE; |
| 94 virtual void NetworkPropertiesUpdated( | 94 virtual void NetworkPropertiesUpdated( |
| 95 const chromeos::NetworkState* network) OVERRIDE; | 95 const chromeos::NetworkState* network) OVERRIDE; |
| 96 | 96 |
| 97 // chromeos::LoginState::Observer | 97 // chromeos::LoginState::Observer |
| 98 virtual void LoggedInStateChanged( | 98 virtual void LoggedInStateChanged( |
| 99 chromeos::LoginState::LoggedInState) OVERRIDE; | 99 chromeos::LoginState::LoggedInState) OVERRIDE; |
| 100 | 100 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // of this object. | 162 // of this object. |
| 163 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_; | 163 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_; |
| 164 | 164 |
| 165 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); | 165 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 } // namespace options | 168 } // namespace options |
| 169 } // namespace chromeos | 169 } // namespace chromeos |
| 170 | 170 |
| 171 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 171 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| OLD | NEW |