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

Side by Side Diff: chrome/browser/chromeos/login/lock/webui_screen_locker.h

Issue 539273002: Added UI to enable debugging features on CrOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ash/shell_delegate.h" 10 #include "ash/shell_delegate.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 virtual void CancelPasswordChangedFlow() override; 76 virtual void CancelPasswordChangedFlow() override;
77 virtual void CreateAccount() override; 77 virtual void CreateAccount() override;
78 virtual void CompleteLogin(const UserContext& user_context) override; 78 virtual void CompleteLogin(const UserContext& user_context) override;
79 virtual base::string16 GetConnectedNetworkName() override; 79 virtual base::string16 GetConnectedNetworkName() override;
80 virtual bool IsSigninInProgress() const override; 80 virtual bool IsSigninInProgress() const override;
81 virtual void Login(const UserContext& user_context, 81 virtual void Login(const UserContext& user_context,
82 const SigninSpecifics& specifics) override; 82 const SigninSpecifics& specifics) override;
83 virtual void MigrateUserData(const std::string& old_password) override; 83 virtual void MigrateUserData(const std::string& old_password) override;
84 virtual void OnSigninScreenReady() override; 84 virtual void OnSigninScreenReady() override;
85 virtual void OnStartEnterpriseEnrollment() override; 85 virtual void OnStartEnterpriseEnrollment() override;
86 virtual void OnStartEnableDebuggingScreen() override;
86 virtual void OnStartKioskEnableScreen() override; 87 virtual void OnStartKioskEnableScreen() override;
87 virtual void OnStartKioskAutolaunchScreen() override; 88 virtual void OnStartKioskAutolaunchScreen() override;
88 virtual void ShowWrongHWIDScreen() override; 89 virtual void ShowWrongHWIDScreen() override;
89 virtual void ResetPublicSessionAutoLoginTimer() override; 90 virtual void ResetPublicSessionAutoLoginTimer() override;
90 virtual void ResyncUserData() override; 91 virtual void ResyncUserData() override;
91 virtual void SetDisplayEmail(const std::string& email) override; 92 virtual void SetDisplayEmail(const std::string& email) override;
92 virtual void Signout() override; 93 virtual void Signout() override;
93 94
94 // content::NotificationObserver (via WebUILoginView) implementation. 95 // content::NotificationObserver (via WebUILoginView) implementation.
95 virtual void Observe(int type, 96 virtual void Observe(int type,
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 gfx::Rect keyboard_bounds_; 159 gfx::Rect keyboard_bounds_;
159 160
160 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; 161 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_;
161 162
162 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); 163 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker);
163 }; 164 };
164 165
165 } // namespace chromeos 166 } // namespace chromeos
166 167
167 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ 168 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698