Searched defs:command_line (Results 201 - 225 of 474) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/first_run/
H A Dupgrade_util_win.cc15 #include "base/command_line.h"
135 bool RelaunchChromeHelper(const CommandLine& command_line, argument
154 CommandLine chrome_exe_command_line = command_line;
223 bool RelaunchChromeBrowser(const CommandLine& command_line) { argument
224 return RelaunchChromeHelper(command_line, RELAUNCH_MODE_DEFAULT);
227 bool RelaunchChromeWithMode(const CommandLine& command_line, argument
229 return RelaunchChromeHelper(command_line, relaunch_mode);
297 bool DoUpgradeTasks(const CommandLine& command_line) { argument
306 if (!RelaunchChromeBrowser(command_line)) {
/external/chromium_org/chrome/browser/lifetime/
H A Dapplication_lifetime.cc9 #include "base/command_line.h"
177 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
178 if (command_line.HasSwitch(switches::kTraceShutdown)) {
180 command_line.GetSwitchValueASCII(switches::kTraceShutdown));
/external/chromium_org/chrome/browser/policy/cloud/
H A Dcomponent_cloud_policy_browsertest.cc8 #include "base/command_line.h"
108 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
109 ExtensionBrowserTest::SetUpCommandLine(command_line);
114 command_line->AppendSwitchASCII(
126 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
127 command_line->AppendSwitchASCII(switches::kDeviceManagementUrl, url);
H A Duser_policy_signin_service_mobile.cc10 #include "base/command_line.h"
32 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
33 if (command_line->HasSwitch(switches::kFakeCloudPolicyType))
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dspelling_menu_observer.cc8 #include "base/command_line.h"
174 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
175 if (command_line->HasSwitch(switches::kEnableSpellingAutoCorrect)) {
/external/chromium_org/chrome/browser/
H A Dshell_integration.cc8 #include "base/command_line.h"
86 CommandLine* command_line) {
87 DCHECK(command_line);
100 command_line->AppendSwitchPath(switches::kUserDataDir, user_data_dir);
107 command_line->AppendSwitchPath(chromeos::switches::kLoginProfile, profile);
110 command_line->AppendSwitchPath(switches::kProfileDirectory,
84 AppendProfileArgs( const base::FilePath& profile_path, CommandLine* command_line) argument
/external/chromium_org/chrome/browser/task_manager/
H A Dbrowser_process_resource_provider.cc7 #include "base/command_line.h"
108 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
109 bool using_v8 = !command_line->HasSwitch(switches::kWinHttpProxyResolver);
110 if (using_v8 && command_line->HasSwitch(switches::kSingleProcess)) {
/external/chromium_org/chrome/browser/ui/app_list/
H A Dstart_page_service.cc9 #include "base/command_line.h"
238 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
239 if (command_line->HasSwitch(::switches::kAppListStartPageURL)) {
241 command_line->GetSwitchValueASCII(::switches::kAppListStartPageURL));
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_navigator_browsertest_chromeos.cc9 #include "base/command_line.h"
157 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
158 CommandLine command_line_copy = *command_line;
164 command_line); variable
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_util.cc11 #include "base/command_line.h"
25 void CommonInitFromCommandLine(const CommandLine& command_line, argument
27 const std::vector<std::string>& args = command_line.argv();
48 void GtkInitFromCommandLine(const CommandLine& command_line) { argument
49 CommonInitFromCommandLine(command_line, gtk_init);
/external/chromium_org/chrome/installer/util/
H A Dauto_launch_util.cc7 #include "base/command_line.h"
187 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
188 if (command_line.HasSwitch(switches::kUserDataDir)) {
193 command_line.GetSwitchValuePath(switches::kUserDataDir).value();
/external/chromium_org/chrome/renderer/autofill/
H A Dautofill_renderer_browsertest.cc5 #include "base/command_line.h"
261 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
262 command_line->AppendSwitch(::switches::kReduceSecurityForTesting);
/external/chromium_org/chrome/service/
H A Dservice_process.cc11 #include "base/command_line.h"
126 const CommandLine& command_line,
163 if (command_line.HasSwitch(switches::kIgnoreUrlFetcherCertRequests))
167 std::string locale = command_line.GetSwitchValueASCII(switches::kLang);
183 PrepareRestartOnCrashEnviroment(command_line);
187 if (command_line.HasSwitch(switches::kEnableCloudPrintProxy) ||
125 Initialize(base::MessageLoopForUI* message_loop, const CommandLine& command_line, ServiceProcessState* state) argument
/external/chromium_org/chrome_elf/
H A Dbreakpad.cc96 wchar_t* command_line = ::GetCommandLine(); local
103 return (command_line && wcsstr(command_line, kNoErrorDialogs));
/external/chromium_org/chromecast/metrics/
H A Dcast_metrics_service_client.cc7 #include "base/command_line.h"
93 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
94 if (command_line->HasSwitch(switches::kOverrideMetricsUploadUrl)) {
96 command_line->GetSwitchValueASCII(switches::kOverrideMetricsUploadUrl));
/external/chromium_org/chromeos/tools/onc_validator/
H A Donc_validator.cc9 #include "base/command_line.h"
112 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
113 CommandLine::StringVector args = command_line.GetArgs();
125 command_line.HasSwitch(kSwitchErrorOnUnknownField),
126 command_line.HasSwitch(kSwitchErrorOnWrongRecommended),
127 command_line.HasSwitch(kSwitchErrorOnMissingField),
128 command_line.HasSwitch(kSwitchManagedOnc));
130 if (command_line.HasSwitch(kSwitchUserPolicy))
132 else if (command_line.HasSwitch(kSwitchDevicePolicy))
134 else if (command_line
[all...]
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_service_url.cc9 #include "base/command_line.h"
36 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
38 command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
44 if (command_line->HasSwitch(::switches::kReduceSecurityForTesting))
55 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
57 command_line.GetSwitchValueASCII(switches::kWalletServiceUrl);
75 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
77 command_line.GetSwitchValueASCII(switches::kWalletSecureServiceUrl);
86 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
88 command_line
[all...]
/external/chromium_org/components/policy/core/common/cloud/
H A Dcloud_policy_constants.cc8 #include "base/command_line.h"
87 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
88 if (command_line->HasSwitch(switches::kDisablePolicyKeyVerification)) {
98 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
99 if (command_line->HasSwitch(switches::kFakeCloudPolicyType))
/external/chromium_org/components/precache/core/
H A Dprecache_fetcher.cc11 #include "base/command_line.h"
30 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
31 if (command_line.HasSwitch(switches::kPrecacheConfigSettingsURL)) {
33 command_line.GetSwitchValueASCII(switches::kPrecacheConfigSettingsURL));
46 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
47 if (command_line.HasSwitch(switches::kPrecacheManifestURLPrefix)) {
48 return command_line.GetSwitchValueASCII(
/external/chromium_org/components/signin/core/common/
H A Dprofile_management_switches.cc7 #include "base/command_line.h"
170 void EnableNewAvatarMenuForTesting(base::CommandLine* command_line) { argument
171 command_line->AppendSwitch(switches::kEnableNewAvatarMenu);
172 DCHECK(!command_line->HasSwitch(switches::kDisableNewAvatarMenu));
175 void DisableNewAvatarMenuForTesting(base::CommandLine* command_line) { argument
176 command_line->AppendSwitch(switches::kDisableNewAvatarMenu);
177 DCHECK(!command_line->HasSwitch(switches::kEnableNewAvatarMenu));
180 void EnableNewProfileManagementForTesting(base::CommandLine* command_line) { argument
181 command_line->AppendSwitch(switches::kEnableNewProfileManagement);
182 DCHECK(!command_line
185 EnableAccountConsistencyForTesting(base::CommandLine* command_line) argument
[all...]
/external/chromium_org/components/variations/
H A Dvariations_seed_processor.cc10 #include "base/command_line.h"
106 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
110 command_line->HasSwitch(experiment.forcing_flag())) {
/external/chromium_org/content/browser/gpu/
H A Dcompositor_util.cc7 #include "base/command_line.h"
45 const base::CommandLine& command_line = local
54 command_line.HasSwitch(switches::kDisableAccelerated2dCanvas) ||
64 command_line.HasSwitch(switches::kDisableGpuCompositing),
73 command_line.HasSwitch(switches::kDisableExperimentalWebGL),
80 command_line.HasSwitch(switches::kDisableFlash3d),
88 command_line.HasSwitch(switches::kDisableFlashStage3d),
98 command_line.HasSwitch(switches::kDisableFlashStage3d),
107 command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode),
117 command_line
245 const base::CommandLine& command_line = local
264 const base::CommandLine& command_line = local
274 const base::CommandLine& command_line = local
[all...]
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface_android.cc7 #include "base/command_line.h"
95 const base::CommandLine* command_line = local
97 if (command_line->HasSwitch(switches::kUIPrioritizeInGpuProcess))
/external/chromium_org/content/common/sandbox_linux/
H A Dbpf_gpu_policy_linux.cc19 #include "base/command_line.h"
76 const base::CommandLine& command_line = local
81 !command_line.HasSwitch(switches::kDisableVaapiAcceleratedVideoEncode);
83 return !command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode) ||
H A Dsandbox_seccomp_bpf_linux.cc14 #include "base/command_line.h"
158 const base::CommandLine& command_line = local
161 if (command_line.HasSwitch(switches::kGpuSandboxAllowSysVShm)) {
175 bool StartBPFSandbox(const base::CommandLine& command_line, argument
199 bool StartBPFSandbox(const base::CommandLine& command_line, argument
216 const base::CommandLine& command_line = local
218 if (!command_line.HasSwitch(switches::kNoSandbox) &&
219 !command_line.HasSwitch(switches::kDisableSeccompFilterSandbox)) {
229 const base::CommandLine& command_line = local
232 return !command_line
258 const base::CommandLine& command_line = local
[all...]

Completed in 528 milliseconds

1234567891011>>