• Home
  • Raw
  • Download

Lines Matching refs:switches

94       command_line->GetSwitchValueASCII(switches::kProcessType);  in BasicStartupComplete()
120 command_line->AppendSwitchPath(switches::kBrowserSubprocessPath, in BasicStartupComplete()
136 command_line->AppendSwitchPath(switches::kFrameworkDirPath, file_path); in BasicStartupComplete()
143 command_line->AppendSwitchPath(switches::kMainBundlePath, file_path); in BasicStartupComplete()
148 command_line->AppendSwitch(sandbox::policy::switches::kNoSandbox); in BasicStartupComplete()
156 switches::kUserAgentProductAndVersion, in BasicStartupComplete()
161 command_line->AppendSwitchASCII(switches::kLang, in BasicStartupComplete()
163 } else if (!command_line->HasSwitch(switches::kLang)) { in BasicStartupComplete()
164 command_line->AppendSwitchASCII(switches::kLang, "en-US"); in BasicStartupComplete()
171 if (log_file.empty() && command_line->HasSwitch(switches::kLogFile)) { in BasicStartupComplete()
172 log_file = command_line->GetSwitchValuePath(switches::kLogFile); in BasicStartupComplete()
180 command_line->AppendSwitchPath(switches::kLogFile, log_file); in BasicStartupComplete()
186 log_severity = switches::kLogSeverity_Verbose; in BasicStartupComplete()
189 log_severity = switches::kLogSeverity_Info; in BasicStartupComplete()
192 log_severity = switches::kLogSeverity_Warning; in BasicStartupComplete()
195 log_severity = switches::kLogSeverity_Error; in BasicStartupComplete()
198 log_severity = switches::kLogSeverity_Fatal; in BasicStartupComplete()
201 log_severity = switches::kLogSeverity_Disable; in BasicStartupComplete()
207 command_line->AppendSwitchASCII(switches::kLogSeverity, log_severity); in BasicStartupComplete()
212 blink::switches::kJavaScriptFlags, in BasicStartupComplete()
217 command_line->AppendSwitch(switches::kDisablePackLoading); in BasicStartupComplete()
223 command_line->AppendSwitchPath(switches::kResourcesDirPath, in BasicStartupComplete()
232 command_line->AppendSwitchPath(switches::kLocalesDirPath, file_path); in BasicStartupComplete()
239 switches::kRemoteDebuggingPort, in BasicStartupComplete()
245 switches::kUncaughtExceptionStackSize, in BasicStartupComplete()
268 command_line->GetSwitchValueASCII(switches::kDisableFeatures); in BasicStartupComplete()
274 command_line->AppendSwitchASCII(switches::kDisableFeatures, in BasicStartupComplete()
293 command_line->GetSwitchValuePath(switches::kLogFile); in BasicStartupComplete()
303 command_line->GetSwitchValueASCII(switches::kLogSeverity); in BasicStartupComplete()
306 switches::kLogSeverity_Verbose)) { in BasicStartupComplete()
309 switches::kLogSeverity_Warning)) { in BasicStartupComplete()
312 switches::kLogSeverity_Error)) { in BasicStartupComplete()
315 switches::kLogSeverity_Fatal)) { in BasicStartupComplete()
318 switches::kLogSeverity_Disable)) { in BasicStartupComplete()
352 command_line->GetSwitchValueASCII(switches::kProcessType); in PreSandboxStartup()
365 if (command_line->HasSwitch(switches::kDisablePackLoading)) in PreSandboxStartup()
405 command_line->GetSwitchValueASCII(switches::kProcessType); in ZygoteForked()
484 if (command_line->HasSwitch(switches::kResourcesDirPath)) { in InitializeResourceBundle()
486 command_line->GetSwitchValuePath(switches::kResourcesDirPath); in InitializeResourceBundle()
504 if (command_line->HasSwitch(switches::kLocalesDirPath)) in InitializeResourceBundle()
505 locales_dir = command_line->GetSwitchValuePath(switches::kLocalesDirPath); in InitializeResourceBundle()
525 std::string locale = command_line->GetSwitchValueASCII(switches::kLang); in InitializeResourceBundle()