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_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 void HandleLaunchHelpApp(const base::ListValue* args); | 194 void HandleLaunchHelpApp(const base::ListValue* args); |
195 void HandleCreateAccount(const base::ListValue* args); | 195 void HandleCreateAccount(const base::ListValue* args); |
196 void HandleAccountPickerReady(const base::ListValue* args); | 196 void HandleAccountPickerReady(const base::ListValue* args); |
197 void HandleLoginWebuiReady(const base::ListValue* args); | 197 void HandleLoginWebuiReady(const base::ListValue* args); |
198 void HandleLoginRequestNetworkState(const base::ListValue* args); | 198 void HandleLoginRequestNetworkState(const base::ListValue* args); |
199 void HandleLoginAddNetworkStateObserver(const base::ListValue* args); | 199 void HandleLoginAddNetworkStateObserver(const base::ListValue* args); |
200 void HandleLoginRemoveNetworkStateObserver(const base::ListValue* args); | 200 void HandleLoginRemoveNetworkStateObserver(const base::ListValue* args); |
201 void HandleSignOutUser(const base::ListValue* args); | 201 void HandleSignOutUser(const base::ListValue* args); |
202 void HandleUserImagesLoaded(const base::ListValue* args); | 202 void HandleUserImagesLoaded(const base::ListValue* args); |
203 void HandleNetworkErrorShown(const base::ListValue* args); | 203 void HandleNetworkErrorShown(const base::ListValue* args); |
| 204 void HandleOpenProxySettings(const base::ListValue* args); |
204 | 205 |
205 // Sends user list to account picker. | 206 // Sends user list to account picker. |
206 void SendUserList(bool animated); | 207 void SendUserList(bool animated); |
207 | 208 |
208 // Kick off cookie / local storage cleanup. | 209 // Kick off cookie / local storage cleanup. |
209 void StartClearingCookies(); | 210 void StartClearingCookies(); |
210 | 211 |
211 // Kick off DNS cache flushing. | 212 // Kick off DNS cache flushing. |
212 void StartClearingDnsCache(); | 213 void StartClearingDnsCache(); |
213 void OnDnsCleared(); | 214 void OnDnsCleared(); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 271 |
271 // CapsLock state change notifier instance; | 272 // CapsLock state change notifier instance; |
272 SystemKeyEventListener* key_event_listener_; | 273 SystemKeyEventListener* key_event_listener_; |
273 | 274 |
274 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 275 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
275 }; | 276 }; |
276 | 277 |
277 } // namespace chromeos | 278 } // namespace chromeos |
278 | 279 |
279 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 280 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |