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_init.h" | 5 #include "chrome/browser/browser_init.h" |
6 | 6 |
7 #include <algorithm> // For max(). | 7 #include <algorithm> // For max(). |
8 | 8 |
9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
10 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1031 } | 1031 } |
1032 | 1032 |
1033 if (command_line.HasSwitch(switches::kExplicitlyAllowedPorts)) { | 1033 if (command_line.HasSwitch(switches::kExplicitlyAllowedPorts)) { |
1034 std::string allowed_ports = | 1034 std::string allowed_ports = |
1035 command_line.GetSwitchValueASCII(switches::kExplicitlyAllowedPorts); | 1035 command_line.GetSwitchValueASCII(switches::kExplicitlyAllowedPorts); |
1036 net::SetExplicitlyAllowedPorts(allowed_ports); | 1036 net::SetExplicitlyAllowedPorts(allowed_ports); |
1037 } | 1037 } |
1038 | 1038 |
1039 #if defined(OS_CHROMEOS) | 1039 #if defined(OS_CHROMEOS) |
1040 // The browser will be launched after the user logs in. | 1040 // The browser will be launched after the user logs in. |
1041 if (command_line.HasSwitch(switches::kLoginManager)) | 1041 if (command_line.HasSwitch(switches::kLoginManager) || |
| 1042 command_line.HasSwitch(switches::kLoginPassword)) { |
1042 silent_launch = true; | 1043 silent_launch = true; |
| 1044 } |
1043 #endif | 1045 #endif |
1044 | 1046 |
1045 // If we don't want to launch a new browser window or tab (in the case | 1047 // If we don't want to launch a new browser window or tab (in the case |
1046 // of an automation request), we are done here. | 1048 // of an automation request), we are done here. |
1047 if (!silent_launch) { | 1049 if (!silent_launch) { |
1048 return browser_init->LaunchBrowser( | 1050 return browser_init->LaunchBrowser( |
1049 command_line, profile, cur_dir, process_startup, return_code); | 1051 command_line, profile, cur_dir, process_startup, return_code); |
1050 } | 1052 } |
1051 return true; | 1053 return true; |
1052 } | 1054 } |
1053 | 1055 |
1054 template <class AutomationProviderClass> | 1056 template <class AutomationProviderClass> |
1055 void BrowserInit::CreateAutomationProvider(const std::string& channel_id, | 1057 void BrowserInit::CreateAutomationProvider(const std::string& channel_id, |
1056 Profile* profile, | 1058 Profile* profile, |
1057 size_t expected_tabs) { | 1059 size_t expected_tabs) { |
1058 scoped_refptr<AutomationProviderClass> automation = | 1060 scoped_refptr<AutomationProviderClass> automation = |
1059 new AutomationProviderClass(profile); | 1061 new AutomationProviderClass(profile); |
1060 automation->ConnectToChannel(channel_id); | 1062 automation->ConnectToChannel(channel_id); |
1061 automation->SetExpectedTabCount(expected_tabs); | 1063 automation->SetExpectedTabCount(expected_tabs); |
1062 | 1064 |
1063 AutomationProviderList* list = | 1065 AutomationProviderList* list = |
1064 g_browser_process->InitAutomationProviderList(); | 1066 g_browser_process->InitAutomationProviderList(); |
1065 DCHECK(list); | 1067 DCHECK(list); |
1066 list->AddProvider(automation); | 1068 list->AddProvider(automation); |
1067 } | 1069 } |
OLD | NEW |