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

Side by Side Diff: chrome/browser/chromeos/login/existing_user_controller.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/existing_user_controller.h" 5 #include "chrome/browser/chromeos/login/existing_user_controller.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 28 matching lines...) Expand all
39 #include "chrome/browser/chromeos/policy/device_local_account.h" 39 #include "chrome/browser/chromeos/policy/device_local_account.h"
40 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" 40 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h"
41 #include "chrome/browser/chromeos/profiles/profile_helper.h" 41 #include "chrome/browser/chromeos/profiles/profile_helper.h"
42 #include "chrome/browser/chromeos/settings/cros_settings.h" 42 #include "chrome/browser/chromeos/settings/cros_settings.h"
43 #include "chrome/browser/prefs/session_startup_pref.h" 43 #include "chrome/browser/prefs/session_startup_pref.h"
44 #include "chrome/browser/ui/webui/chromeos/login/l10n_util.h" 44 #include "chrome/browser/ui/webui/chromeos/login/l10n_util.h"
45 #include "chrome/common/chrome_switches.h" 45 #include "chrome/common/chrome_switches.h"
46 #include "chrome/common/chrome_version_info.h" 46 #include "chrome/common/chrome_version_info.h"
47 #include "chrome/common/pref_names.h" 47 #include "chrome/common/pref_names.h"
48 #include "chrome/common/url_constants.h" 48 #include "chrome/common/url_constants.h"
49 #include "chrome/grit/generated_resources.h"
49 #include "chromeos/chromeos_switches.h" 50 #include "chromeos/chromeos_switches.h"
50 #include "chromeos/dbus/dbus_thread_manager.h" 51 #include "chromeos/dbus/dbus_thread_manager.h"
51 #include "chromeos/dbus/power_manager_client.h" 52 #include "chromeos/dbus/power_manager_client.h"
52 #include "chromeos/dbus/session_manager_client.h" 53 #include "chromeos/dbus/session_manager_client.h"
53 #include "chromeos/login/auth/user_context.h" 54 #include "chromeos/login/auth/user_context.h"
54 #include "chromeos/login/user_names.h" 55 #include "chromeos/login/user_names.h"
55 #include "chromeos/settings/cros_settings_names.h" 56 #include "chromeos/settings/cros_settings_names.h"
56 #include "components/google/core/browser/google_util.h" 57 #include "components/google/core/browser/google_util.h"
57 #include "components/policy/core/common/cloud/cloud_policy_core.h" 58 #include "components/policy/core/common/cloud/cloud_policy_core.h"
58 #include "components/policy/core/common/cloud/cloud_policy_store.h" 59 #include "components/policy/core/common/cloud/cloud_policy_store.h"
59 #include "components/policy/core/common/policy_map.h" 60 #include "components/policy/core/common/policy_map.h"
60 #include "components/policy/core/common/policy_service.h" 61 #include "components/policy/core/common/policy_service.h"
61 #include "components/policy/core/common/policy_types.h" 62 #include "components/policy/core/common/policy_types.h"
62 #include "components/user_manager/user_type.h" 63 #include "components/user_manager/user_type.h"
63 #include "content/public/browser/browser_thread.h" 64 #include "content/public/browser/browser_thread.h"
64 #include "content/public/browser/notification_service.h" 65 #include "content/public/browser/notification_service.h"
65 #include "content/public/browser/notification_types.h" 66 #include "content/public/browser/notification_types.h"
66 #include "content/public/browser/user_metrics.h" 67 #include "content/public/browser/user_metrics.h"
67 #include "google_apis/gaia/gaia_auth_util.h" 68 #include "google_apis/gaia/gaia_auth_util.h"
68 #include "google_apis/gaia/google_service_auth_error.h" 69 #include "google_apis/gaia/google_service_auth_error.h"
69 #include "grit/generated_resources.h"
70 #include "net/http/http_auth_cache.h" 70 #include "net/http/http_auth_cache.h"
71 #include "net/http/http_network_session.h" 71 #include "net/http/http_network_session.h"
72 #include "net/http/http_transaction_factory.h" 72 #include "net/http/http_transaction_factory.h"
73 #include "net/url_request/url_request_context.h" 73 #include "net/url_request/url_request_context.h"
74 #include "net/url_request/url_request_context_getter.h" 74 #include "net/url_request/url_request_context_getter.h"
75 #include "policy/policy_constants.h" 75 #include "policy/policy_constants.h"
76 #include "ui/accessibility/ax_enums.h" 76 #include "ui/accessibility/ax_enums.h"
77 #include "ui/base/l10n/l10n_util.h" 77 #include "ui/base/l10n/l10n_util.h"
78 #include "ui/views/widget/widget.h" 78 #include "ui/views/widget/widget.h"
79 79
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1242 // Only one instance of LoginPerformer should exist at a time. 1242 // Only one instance of LoginPerformer should exist at a time.
1243 login_performer_.reset(NULL); 1243 login_performer_.reset(NULL);
1244 login_performer_.reset(new LoginPerformer(this)); 1244 login_performer_.reset(new LoginPerformer(this));
1245 is_login_in_progress_ = true; 1245 is_login_in_progress_ = true;
1246 login_performer_->LoginAsPublicSession(user_context); 1246 login_performer_->LoginAsPublicSession(user_context);
1247 SendAccessibilityAlert( 1247 SendAccessibilityAlert(
1248 l10n_util::GetStringUTF8(IDS_CHROMEOS_ACC_LOGIN_SIGNIN_PUBLIC_ACCOUNT)); 1248 l10n_util::GetStringUTF8(IDS_CHROMEOS_ACC_LOGIN_SIGNIN_PUBLIC_ACCOUNT));
1249 } 1249 }
1250 1250
1251 } // namespace chromeos 1251 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/demo_mode/demo_app_launcher.cc ('k') | chrome/browser/chromeos/login/help_app_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698