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

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

Issue 448423002: Use a qualified path for grit includes in chrome/browser/chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build Created 6 years, 4 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 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"
11 #include "chrome/browser/signin/screenlock_bridge.h" 11 #include "chrome/browser/signin/screenlock_bridge.h"
12 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" 12 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h"
13 #include "chrome/grit/generated_resources.h"
13 #include "content/public/browser/browser_thread.h" 14 #include "content/public/browser/browser_thread.h"
14 #include "content/public/browser/web_ui.h" 15 #include "content/public/browser/web_ui.h"
15 #include "grit/generated_resources.h"
16 #include "ui/base/l10n/l10n_util.h" 16 #include "ui/base/l10n/l10n_util.h"
17 17
18 namespace chromeos { 18 namespace chromeos {
19 19
20 UserManager* AppLaunchSigninScreen::test_user_manager_ = NULL; 20 UserManager* AppLaunchSigninScreen::test_user_manager_ = NULL;
21 21
22 AppLaunchSigninScreen::AppLaunchSigninScreen( 22 AppLaunchSigninScreen::AppLaunchSigninScreen(
23 OobeUI* oobe_ui, Delegate* delegate) 23 OobeUI* oobe_ui, Delegate* delegate)
24 : oobe_ui_(oobe_ui), 24 : oobe_ui_(oobe_ui),
25 delegate_(delegate), 25 delegate_(delegate),
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 ScreenlockBridge::LockHandler::AuthType auth_type) { 217 ScreenlockBridge::LockHandler::AuthType auth_type) {
218 return; 218 return;
219 } 219 }
220 220
221 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( 221 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType(
222 const std::string& username) const { 222 const std::string& username) const {
223 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; 223 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD;
224 } 224 }
225 225
226 } // namespace chromeos 226 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/locale_change_guard.cc ('k') | chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698