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

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

Issue 1470633002: ChromeOS: Fix removeUser button on signin screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@462823--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Fix-GetKnownUserAccountId
Patch Set: Rebased. Created 5 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/screens/user_selection_screen.h" 9 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h"
10 #include "chrome/browser/chromeos/login/session/user_session_manager.h" 10 #include "chrome/browser/chromeos/login/session/user_session_manager.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 void AppLaunchSigninScreen::LoadWallpaper(const std::string& username) { 100 void AppLaunchSigninScreen::LoadWallpaper(const std::string& username) {
101 } 101 }
102 102
103 void AppLaunchSigninScreen::LoadSigninWallpaper() { 103 void AppLaunchSigninScreen::LoadSigninWallpaper() {
104 } 104 }
105 105
106 void AppLaunchSigninScreen::OnSigninScreenReady() { 106 void AppLaunchSigninScreen::OnSigninScreenReady() {
107 } 107 }
108 108
109 void AppLaunchSigninScreen::RemoveUser(const std::string& username) { 109 void AppLaunchSigninScreen::RemoveUser(const AccountId& account_id) {
110 NOTREACHED(); 110 NOTREACHED();
111 } 111 }
112 112
113 void AppLaunchSigninScreen::ResyncUserData() { 113 void AppLaunchSigninScreen::ResyncUserData() {
114 NOTREACHED(); 114 NOTREACHED();
115 } 115 }
116 116
117 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { 117 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() {
118 NOTREACHED(); 118 NOTREACHED();
119 } 119 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 } 215 }
216 216
217 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} 217 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {}
218 218
219 bool AppLaunchSigninScreen::IsUserWhitelisted(const std::string& user_id) { 219 bool AppLaunchSigninScreen::IsUserWhitelisted(const std::string& user_id) {
220 NOTREACHED(); 220 NOTREACHED();
221 return true; 221 return true;
222 } 222 }
223 223
224 } // namespace chromeos 224 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698