OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 base::DictionaryValue* dictionary); | 79 base::DictionaryValue* dictionary); |
80 | 80 |
81 void SetPreferNetworkCallback(const base::ListValue* args); | 81 void SetPreferNetworkCallback(const base::ListValue* args); |
82 void SetAutoConnectCallback(const base::ListValue* args); | 82 void SetAutoConnectCallback(const base::ListValue* args); |
83 void SetSharedCallback(const base::ListValue* args); | 83 void SetSharedCallback(const base::ListValue* args); |
84 void SetIPConfigCallback(const base::ListValue* args); | 84 void SetIPConfigCallback(const base::ListValue* args); |
85 void EnableWifiCallback(const base::ListValue* args); | 85 void EnableWifiCallback(const base::ListValue* args); |
86 void DisableWifiCallback(const base::ListValue* args); | 86 void DisableWifiCallback(const base::ListValue* args); |
87 void EnableCellularCallback(const base::ListValue* args); | 87 void EnableCellularCallback(const base::ListValue* args); |
88 void DisableCellularCallback(const base::ListValue* args); | 88 void DisableCellularCallback(const base::ListValue* args); |
89 void ImportNetworkSettingsCallback(const base::ListValue* args); | |
90 void BuyDataPlanCallback(const base::ListValue* args); | 89 void BuyDataPlanCallback(const base::ListValue* args); |
91 void SetApnCallback(const base::ListValue* args); | 90 void SetApnCallback(const base::ListValue* args); |
92 void SetSimCardLockCallback(const base::ListValue* args); | 91 void SetSimCardLockCallback(const base::ListValue* args); |
93 void ChangePinCallback(const base::ListValue* args); | 92 void ChangePinCallback(const base::ListValue* args); |
94 void ShareNetworkCallback(const base::ListValue* args); | 93 void ShareNetworkCallback(const base::ListValue* args); |
95 | 94 |
96 // Populates the ui with the details of the given device path. This forces | 95 // Populates the ui with the details of the given device path. This forces |
97 // an overlay to be displayed in the UI. | 96 // an overlay to be displayed in the UI. |
98 void PopulateDictionaryDetails(const chromeos::Network* network); | 97 void PopulateDictionaryDetails(const chromeos::Network* network); |
99 void PopulateWifiDetails(const chromeos::WifiNetwork* wifi, | 98 void PopulateWifiDetails(const chromeos::WifiNetwork* wifi, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 130 |
132 // Convenience pointer to netwrok library (will not change). | 131 // Convenience pointer to netwrok library (will not change). |
133 chromeos::NetworkLibrary* cros_; | 132 chromeos::NetworkLibrary* cros_; |
134 | 133 |
135 content::NotificationRegistrar registrar_; | 134 content::NotificationRegistrar registrar_; |
136 | 135 |
137 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); | 136 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); |
138 }; | 137 }; |
139 | 138 |
140 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 139 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
OLD | NEW |