| OLD | NEW |
| 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 <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 } | 101 } |
| 102 | 102 |
| 103 void AppLaunchSigninScreen::LoadWallpaper(const AccountId& account_id) {} | 103 void AppLaunchSigninScreen::LoadWallpaper(const AccountId& account_id) {} |
| 104 | 104 |
| 105 void AppLaunchSigninScreen::LoadSigninWallpaper() { | 105 void AppLaunchSigninScreen::LoadSigninWallpaper() { |
| 106 } | 106 } |
| 107 | 107 |
| 108 void AppLaunchSigninScreen::OnSigninScreenReady() { | 108 void AppLaunchSigninScreen::OnSigninScreenReady() { |
| 109 } | 109 } |
| 110 | 110 |
| 111 void AppLaunchSigninScreen::OnGaiaScreenReady() {} |
| 112 |
| 111 void AppLaunchSigninScreen::RemoveUser(const AccountId& account_id) { | 113 void AppLaunchSigninScreen::RemoveUser(const AccountId& account_id) { |
| 112 NOTREACHED(); | 114 NOTREACHED(); |
| 113 } | 115 } |
| 114 | 116 |
| 115 void AppLaunchSigninScreen::ResyncUserData() { | 117 void AppLaunchSigninScreen::ResyncUserData() { |
| 116 NOTREACHED(); | 118 NOTREACHED(); |
| 117 } | 119 } |
| 118 | 120 |
| 119 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { | 121 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { |
| 120 NOTREACHED(); | 122 NOTREACHED(); |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 } | 229 } |
| 228 | 230 |
| 229 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} | 231 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} |
| 230 | 232 |
| 231 bool AppLaunchSigninScreen::IsUserWhitelisted(const AccountId& account_id) { | 233 bool AppLaunchSigninScreen::IsUserWhitelisted(const AccountId& account_id) { |
| 232 NOTREACHED(); | 234 NOTREACHED(); |
| 233 return true; | 235 return true; |
| 234 } | 236 } |
| 235 | 237 |
| 236 } // namespace chromeos | 238 } // namespace chromeos |
| OLD | NEW |