OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/browser_main.h" | 5 #include "chrome/browser/browser_main.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 #if defined(TOOLKIT_VIEWS) | 138 #if defined(TOOLKIT_VIEWS) |
139 #include "chrome/browser/views/chrome_views_delegate.h" | 139 #include "chrome/browser/views/chrome_views_delegate.h" |
140 #include "views/focus/accelerator_handler.h" | 140 #include "views/focus/accelerator_handler.h" |
141 #endif | 141 #endif |
142 | 142 |
143 #if defined(OS_CHROMEOS) | 143 #if defined(OS_CHROMEOS) |
144 #include "chrome/browser/chromeos/cros/cros_library.h" | 144 #include "chrome/browser/chromeos/cros/cros_library.h" |
145 #include "chrome/browser/chromeos/cros/screen_lock_library.h" | 145 #include "chrome/browser/chromeos/cros/screen_lock_library.h" |
146 #include "chrome/browser/chromeos/customization_document.h" | 146 #include "chrome/browser/chromeos/customization_document.h" |
147 #include "chrome/browser/chromeos/external_metrics.h" | 147 #include "chrome/browser/chromeos/external_metrics.h" |
| 148 #include "chrome/browser/chromeos/login/authenticator.h" |
| 149 #include "chrome/browser/chromeos/login/login_utils.h" |
148 #include "chrome/browser/chromeos/login/screen_locker.h" | 150 #include "chrome/browser/chromeos/login/screen_locker.h" |
149 #include "chrome/browser/chromeos/login/user_manager.h" | 151 #include "chrome/browser/chromeos/login/user_manager.h" |
150 #include "chrome/browser/views/browser_dialogs.h" | 152 #include "chrome/browser/views/browser_dialogs.h" |
151 #endif | 153 #endif |
152 | 154 |
153 // BrowserMainParts ------------------------------------------------------------ | 155 // BrowserMainParts ------------------------------------------------------------ |
154 | 156 |
155 BrowserMainParts::BrowserMainParts(const MainFunctionParams& parameters) | 157 BrowserMainParts::BrowserMainParts(const MainFunctionParams& parameters) |
156 : parameters_(parameters), | 158 : parameters_(parameters), |
157 parsed_command_line_(parameters.command_line_) { | 159 parsed_command_line_(parameters.command_line_) { |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 InitCommonControlsEx(&config); | 676 InitCommonControlsEx(&config); |
675 #endif | 677 #endif |
676 } | 678 } |
677 #else | 679 #else |
678 void InitializeToolkit() { | 680 void InitializeToolkit() { |
679 } | 681 } |
680 #endif | 682 #endif |
681 | 683 |
682 #if defined(OS_CHROMEOS) | 684 #if defined(OS_CHROMEOS) |
683 | 685 |
| 686 // Class is used to login using passed username and password. |
| 687 // The instance will be deleted upon success or failure. |
| 688 class StubLogin : public chromeos::LoginStatusConsumer { |
| 689 public: |
| 690 explicit StubLogin(std::string username, std::string password) { |
| 691 authenticator_ = chromeos::LoginUtils::Get()->CreateAuthenticator(this); |
| 692 authenticator_.get()->AuthenticateToLogin( |
| 693 g_browser_process->profile_manager()->GetDefaultProfile(), |
| 694 username, |
| 695 password, |
| 696 std::string(), |
| 697 std::string()); |
| 698 } |
| 699 |
| 700 void OnLoginFailure(const std::string& error) { |
| 701 LOG(ERROR) << "Login Failure: " << error; |
| 702 delete this; |
| 703 } |
| 704 |
| 705 void OnLoginSuccess(const std::string& username, |
| 706 const GaiaAuthConsumer::ClientLoginResult& credentials) { |
| 707 chromeos::LoginUtils::Get()->CompleteLogin(username, credentials); |
| 708 delete this; |
| 709 } |
| 710 |
| 711 scoped_refptr<chromeos::Authenticator> authenticator_; |
| 712 }; |
| 713 |
684 void OptionallyRunChromeOSLoginManager(const CommandLine& parsed_command_line) { | 714 void OptionallyRunChromeOSLoginManager(const CommandLine& parsed_command_line) { |
685 if (parsed_command_line.HasSwitch(switches::kLoginManager)) { | 715 if (parsed_command_line.HasSwitch(switches::kLoginManager)) { |
686 std::string first_screen = | 716 std::string first_screen = |
687 parsed_command_line.GetSwitchValueASCII(switches::kLoginScreen); | 717 parsed_command_line.GetSwitchValueASCII(switches::kLoginScreen); |
688 std::string size_arg = | 718 std::string size_arg = |
689 parsed_command_line.GetSwitchValueASCII( | 719 parsed_command_line.GetSwitchValueASCII( |
690 switches::kLoginScreenSize); | 720 switches::kLoginScreenSize); |
691 gfx::Size size(0, 0); | 721 gfx::Size size(0, 0); |
692 // Allow the size of the login window to be set explicitly. If not set, | 722 // Allow the size of the login window to be set explicitly. If not set, |
693 // default to the entire screen. This is mostly useful for testing. | 723 // default to the entire screen. This is mostly useful for testing. |
694 if (size_arg.size()) { | 724 if (size_arg.size()) { |
695 std::vector<std::string> dimensions; | 725 std::vector<std::string> dimensions; |
696 SplitString(size_arg, ',', &dimensions); | 726 SplitString(size_arg, ',', &dimensions); |
697 if (dimensions.size() == 2) { | 727 if (dimensions.size() == 2) { |
698 int width, height; | 728 int width, height; |
699 if (base::StringToInt(dimensions[0], &width) && | 729 if (base::StringToInt(dimensions[0], &width) && |
700 base::StringToInt(dimensions[1], &height)) | 730 base::StringToInt(dimensions[1], &height)) |
701 size.SetSize(width, height); | 731 size.SetSize(width, height); |
702 } | 732 } |
703 } | 733 } |
704 browser::ShowLoginWizard(first_screen, size); | 734 browser::ShowLoginWizard(first_screen, size); |
| 735 } else if (parsed_command_line.HasSwitch(switches::kLoginUser) && |
| 736 parsed_command_line.HasSwitch(switches::kLoginPassword)) { |
| 737 new StubLogin( |
| 738 parsed_command_line.GetSwitchValueASCII(switches::kLoginUser), |
| 739 parsed_command_line.GetSwitchValueASCII(switches::kLoginPassword)); |
705 } | 740 } |
706 } | 741 } |
707 | 742 |
708 #else | 743 #else |
709 | 744 |
710 void OptionallyRunChromeOSLoginManager(const CommandLine& parsed_command_line) { | 745 void OptionallyRunChromeOSLoginManager(const CommandLine& parsed_command_line) { |
711 // Dummy empty function for non-ChromeOS builds to avoid extra ifdefs below. | 746 // Dummy empty function for non-ChromeOS builds to avoid extra ifdefs below. |
712 } | 747 } |
713 | 748 |
714 #endif // defined(OS_CHROMEOS) | 749 #endif // defined(OS_CHROMEOS) |
715 | 750 |
716 #if defined(OS_MACOSX) | 751 #if defined(OS_MACOSX) |
717 OSStatus KeychainCallback(SecKeychainEvent keychain_event, | 752 OSStatus KeychainCallback(SecKeychainEvent keychain_event, |
718 SecKeychainCallbackInfo *info, void *context) { | 753 SecKeychainCallbackInfo *info, void *context) { |
719 return noErr; | 754 return noErr; |
720 } | 755 } |
721 #endif | 756 #endif |
722 | 757 |
723 } // namespace | 758 } // namespace |
724 | 759 |
| 760 #if defined(OS_CHROMEOS) |
| 761 // Allows authenticator to be invoked without adding refcounting. The instances |
| 762 // will delete themselves upon completion. |
| 763 DISABLE_RUNNABLE_METHOD_REFCOUNT(StubLogin); |
| 764 #endif |
| 765 |
725 #if defined(OS_WIN) | 766 #if defined(OS_WIN) |
726 #define DLLEXPORT __declspec(dllexport) | 767 #define DLLEXPORT __declspec(dllexport) |
727 | 768 |
728 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling. | 769 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling. |
729 extern "C" { | 770 extern "C" { |
730 DLLEXPORT void __cdecl RelaunchChromeBrowserWithNewCommandLineIfNeeded(); | 771 DLLEXPORT void __cdecl RelaunchChromeBrowserWithNewCommandLineIfNeeded(); |
731 } | 772 } |
732 | 773 |
733 DLLEXPORT void __cdecl RelaunchChromeBrowserWithNewCommandLineIfNeeded() { | 774 DLLEXPORT void __cdecl RelaunchChromeBrowserWithNewCommandLineIfNeeded() { |
734 Upgrade::RelaunchChromeBrowserWithNewCommandLineIfNeeded(); | 775 Upgrade::RelaunchChromeBrowserWithNewCommandLineIfNeeded(); |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 default: | 1057 default: |
1017 NOTREACHED(); | 1058 NOTREACHED(); |
1018 } | 1059 } |
1019 #if !defined(OS_MACOSX) // closing brace for if | 1060 #if !defined(OS_MACOSX) // closing brace for if |
1020 } | 1061 } |
1021 #endif | 1062 #endif |
1022 | 1063 |
1023 // Profile creation ---------------------------------------------------------- | 1064 // Profile creation ---------------------------------------------------------- |
1024 | 1065 |
1025 #if defined(OS_CHROMEOS) | 1066 #if defined(OS_CHROMEOS) |
| 1067 // Stub out chromeos implementations. |
| 1068 if (parsed_command_line.HasSwitch(switches::kStubCros)) |
| 1069 chromeos::CrosLibrary::Get()->GetTestApi()->SetUseStubImpl(); |
| 1070 |
1026 // Initialize the screen locker now so that it can receive | 1071 // Initialize the screen locker now so that it can receive |
1027 // LOGIN_USER_CHANGED notification from UserManager. | 1072 // LOGIN_USER_CHANGED notification from UserManager. |
1028 chromeos::ScreenLocker::InitClass(); | 1073 chromeos::ScreenLocker::InitClass(); |
1029 | 1074 |
1030 // This forces the ProfileManager to be created and register for the | 1075 // This forces the ProfileManager to be created and register for the |
1031 // notification it needs to track the logged in user. | 1076 // notification it needs to track the logged in user. |
1032 g_browser_process->profile_manager()->GetDefaultProfile(); | 1077 g_browser_process->profile_manager()->GetDefaultProfile(); |
1033 | 1078 |
1034 if (parsed_command_line.HasSwitch(switches::kLoginUser)) { | 1079 if (parsed_command_line.HasSwitch(switches::kLoginUser)) { |
1035 std::string username = | 1080 std::string username = |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 | 1399 |
1355 metrics->Stop(); | 1400 metrics->Stop(); |
1356 | 1401 |
1357 // browser_shutdown takes care of deleting browser_process, so we need to | 1402 // browser_shutdown takes care of deleting browser_process, so we need to |
1358 // release it. | 1403 // release it. |
1359 ignore_result(browser_process.release()); | 1404 ignore_result(browser_process.release()); |
1360 browser_shutdown::Shutdown(); | 1405 browser_shutdown::Shutdown(); |
1361 | 1406 |
1362 return result_code; | 1407 return result_code; |
1363 } | 1408 } |
OLD | NEW |