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

Side by Side Diff: chrome/browser/chromeos/login/app_launch_signin_screen.cc

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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h" 5 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h"
6 6
7 #include "base/values.h" 7 #include "base/values.h"
8 #include "chrome/browser/chromeos/login/help_app_launcher.h" 8 #include "chrome/browser/chromeos/login/help_app_launcher.h"
9 #include "chrome/browser/chromeos/login/login_utils.h" 9 #include "chrome/browser/chromeos/login/login_utils.h"
10 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" 10 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 113 }
114 114
115 void AppLaunchSigninScreen::ResyncUserData() { 115 void AppLaunchSigninScreen::ResyncUserData() {
116 NOTREACHED(); 116 NOTREACHED();
117 } 117 }
118 118
119 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { 119 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() {
120 NOTREACHED(); 120 NOTREACHED();
121 } 121 }
122 122
123 void AppLaunchSigninScreen::ShowEnableDebuggingScreen() {
124 NOTREACHED();
125 }
126
123 void AppLaunchSigninScreen::ShowKioskEnableScreen() { 127 void AppLaunchSigninScreen::ShowKioskEnableScreen() {
124 NOTREACHED(); 128 NOTREACHED();
125 } 129 }
126 130
127 void AppLaunchSigninScreen::ShowKioskAutolaunchScreen() { 131 void AppLaunchSigninScreen::ShowKioskAutolaunchScreen() {
128 NOTREACHED(); 132 NOTREACHED();
129 } 133 }
130 134
131 void AppLaunchSigninScreen::ShowWrongHWIDScreen() { 135 void AppLaunchSigninScreen::ShowWrongHWIDScreen() {
132 NOTREACHED(); 136 NOTREACHED();
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 ScreenlockBridge::LockHandler::AuthType auth_type) { 223 ScreenlockBridge::LockHandler::AuthType auth_type) {
220 return; 224 return;
221 } 225 }
222 226
223 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( 227 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType(
224 const std::string& username) const { 228 const std::string& username) const {
225 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; 229 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD;
226 } 230 }
227 231
228 } // namespace chromeos 232 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698