Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h

Issue 9861015: [cros] Captive portal dialog fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clarify Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 // sign-in (allow BWSI and allow whitelist) are changed. 180 // sign-in (allow BWSI and allow whitelist) are changed.
181 void UpdateAuthExtension(); 181 void UpdateAuthExtension();
182 182
183 // WebUI message handlers. 183 // WebUI message handlers.
184 void HandleCompleteLogin(const base::ListValue* args); 184 void HandleCompleteLogin(const base::ListValue* args);
185 void HandleGetUsers(const base::ListValue* args); 185 void HandleGetUsers(const base::ListValue* args);
186 void HandleAuthenticateUser(const base::ListValue* args); 186 void HandleAuthenticateUser(const base::ListValue* args);
187 void HandleLaunchDemoUser(const base::ListValue* args); 187 void HandleLaunchDemoUser(const base::ListValue* args);
188 void HandleLaunchIncognito(const base::ListValue* args); 188 void HandleLaunchIncognito(const base::ListValue* args);
189 void HandleFixCaptivePortal(const base::ListValue* args); 189 void HandleFixCaptivePortal(const base::ListValue* args);
190 void HandleShowCaptivePortal(const base::ListValue* args);
190 void HandleHideCaptivePortal(const base::ListValue* args); 191 void HandleHideCaptivePortal(const base::ListValue* args);
191 void HandleOfflineLogin(const base::ListValue* args); 192 void HandleOfflineLogin(const base::ListValue* args);
192 void HandleShutdownSystem(const base::ListValue* args); 193 void HandleShutdownSystem(const base::ListValue* args);
193 void HandleRemoveUser(const base::ListValue* args); 194 void HandleRemoveUser(const base::ListValue* args);
194 void HandleShowAddUser(const base::ListValue* args); 195 void HandleShowAddUser(const base::ListValue* args);
195 void HandleToggleEnrollmentScreen(const base::ListValue* args); 196 void HandleToggleEnrollmentScreen(const base::ListValue* args);
196 void HandleLaunchHelpApp(const base::ListValue* args); 197 void HandleLaunchHelpApp(const base::ListValue* args);
197 void HandleCreateAccount(const base::ListValue* args); 198 void HandleCreateAccount(const base::ListValue* args);
198 void HandleAccountPickerReady(const base::ListValue* args); 199 void HandleAccountPickerReady(const base::ListValue* args);
199 void HandleLoginWebuiReady(const base::ListValue* args); 200 void HandleLoginWebuiReady(const base::ListValue* args);
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 273
273 // CapsLock state change notifier instance; 274 // CapsLock state change notifier instance;
274 SystemKeyEventListener* key_event_listener_; 275 SystemKeyEventListener* key_event_listener_;
275 276
276 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); 277 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler);
277 }; 278 };
278 279
279 } // namespace chromeos 280 } // namespace chromeos
280 281
281 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ 282 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698