HomeSort by relevance Sort by last modified time
    Searched refs:new_command_line (Results 1 - 13 of 13) sorted by null

  /external/chromium/chrome/browser/first_run/
upgrade_util.cc 18 void SetNewCommandLine(CommandLine* new_command_line) {
19 command_line = new_command_line;
upgrade_util.h 13 void SetNewCommandLine(CommandLine* new_command_line);
  /external/chromium_org/chrome/browser/first_run/
upgrade_util.cc 18 void SetNewCommandLine(CommandLine* new_command_line) {
19 command_line = new_command_line;
upgrade_util.h 30 void SetNewCommandLine(CommandLine* new_command_line);
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 41 CommandLine new_command_line(GetCommandLineForRelaunch());
42 new_command_line.AppendArgPath(test_file_path);
50 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
67 CommandLine new_command_line(GetCommandLineForRelaunch());
68 new_command_line.AppendSwitch(switches::kCheckCloudPrintConnectorPolicy);
73 new_command_line.AppendSwitchASCII(
79 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
  /external/chromium_org/chrome/browser/
chrome_main_browsertest.cc 34 void Relaunch(const CommandLine& new_command_line) {
35 base::LaunchProcess(new_command_line, base::LaunchOptions(), NULL);
63 CommandLine new_command_line(GetCommandLineForRelaunch());
64 new_command_line.AppendArgPath(test_file_path);
68 Relaunch(new_command_line);
93 CommandLine new_command_line(GetCommandLineForRelaunch());
94 new_command_line.AppendSwitch(switches::kIncognito);
95 new_command_line.AppendArgPath(test_file_path);
97 Relaunch(new_command_line);
101 Relaunch(new_command_line);
    [all...]
user_data_dir_extractor_win.cc 71 CommandLine new_command_line = parameters.command_line;
72 new_command_line.AppendSwitchPath(switches::kUserDataDir,
74 base::LaunchProcess(new_command_line, base::LaunchOptions(), NULL);
about_flags_unittest.cc 232 CommandLine new_command_line(CommandLine::NO_PROGRAM);
233 ConvertFlagsToSwitches(&flags_storage_, &new_command_line);
235 EXPECT_FALSE(AreSwitchesIdenticalToCurrentCommandLine(new_command_line,
240 EXPECT_TRUE(AreSwitchesIdenticalToCurrentCommandLine(new_command_line,
250 EXPECT_FALSE(AreSwitchesIdenticalToCurrentCommandLine(new_command_line,
  /external/chromium_org/chrome/test/base/
chrome_test_launcher.cc 66 CommandLine new_command_line(command_line->GetProgram());
74 new_command_line.AppendSwitchNative((*iter).first, (*iter).second);
77 new_command_line.AppendSwitchPath(switches::kUserDataDir, temp_data_dir);
80 new_command_line.AppendSwitch(switches::kAllowFileAccess);
82 *command_line = new_command_line;
in_process_browser_test.cc 368 CommandLine new_command_line(CommandLine::ForCurrentProcess()->GetProgram());
374 new_command_line.AppendSwitch(content::kLaunchAsBrowser);
378 new_command_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir);
382 new_command_line.AppendSwitchNative((*iter).first, (*iter).second);
384 return new_command_line;
  /external/chromium/net/tools/dump_cache/
dump_cache.cc 93 CommandLine new_command_line = CommandLine::FromString(hacked_command_line); local
96 new_command_line.AppendSwitch(kSlave);
99 new_command_line.AppendSwitchASCII(kPipe, WideToASCII(pipe_number));
100 if (!base::LaunchApp(new_command_line, false, false, NULL)) {
  /external/chromium_org/base/test/
test_launcher.cc 358 CommandLine new_command_line(command_line.GetProgram());
370 new_command_line.AppendSwitchNative((*iter).first, (*iter).second);
378 new_command_line.PrependWrapper(ASCIIToWide(wrapper));
380 new_command_line.PrependWrapper(wrapper);
394 if (!base::LaunchProcess(new_command_line, options, &process_handle))
  /external/chromium/chrome/browser/
browser_main.cc 842 CommandLine new_command_line = parameters.command_line_; local
    [all...]

Completed in 359 milliseconds