Searched refs:command_line (Results 376 - 400 of 915) sorted by last modified time

<<11121314151617181920>>

/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper.cc9 #include "base/command_line.h"
77 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
79 command_line->HasSwitch(switches::kEnableOfflineAutoReload);
81 command_line->HasSwitch(switches::kEnableOfflineAutoReloadVisibleOnly);
180 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
182 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
216 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
218 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_classifier_browsertest.cc10 #include "base/command_line.h"
54 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
55 command_line->AppendSwitch(switches::kSingleProcess);
58 command_line->AppendSwitch(switches::kDisableGpu);
H A Dphishing_classifier_delegate_browsertest.cc7 #include "base/command_line.h"
144 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
145 command_line->AppendSwitch(switches::kSingleProcess);
148 command_line->AppendSwitch(switches::kDisableGpu);
H A Dphishing_dom_feature_extractor_browsertest.cc14 #include "base/command_line.h"
76 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
77 command_line->AppendSwitch(switches::kSingleProcess);
80 command_line->AppendSwitch(switches::kDisableGpu);
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_provider.cc7 #include "base/command_line.h"
181 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
182 if (command_line.HasSwitch(switches::kEnableSpellingAutoCorrect)) {
/external/chromium_org/chrome/service/
H A Dservice_main.cc22 if (parameters.command_line.HasSwitch(switches::kWaitForDebugger)) {
27 << parameters.command_line.GetCommandLineString();
39 parameters.command_line,
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
H A Dservice_process.h43 const base::CommandLine& command_line,
H A Dservice_process_unittest.cc10 #include "base/command_line.h"
21 CommandLine command_line(CommandLine::NO_PROGRAM);
22 EXPECT_TRUE(process.Initialize(&main_message_loop, command_line, &state));
/external/chromium_org/chrome/test/base/
H A Dchrome_test_launcher.cc7 #include "base/command_line.h"
60 CommandLine* command_line, const base::FilePath& temp_data_dir) OVERRIDE {
61 CommandLine new_command_line(command_line->GetProgram());
62 CommandLine::SwitchMap switches = command_line->GetSwitches();
77 *command_line = new_command_line;
H A Din_process_browser_test.cc10 #include "base/command_line.h"
157 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
163 command_line->AppendSwitch(switches::kDisableOfflineAutoReload);
166 SetUpCommandLine(command_line);
168 PrepareTestCommandLine(command_line);
181 base::FilePath log_dir = logging::GetSessionLogFile(*command_line).DirName();
220 void InProcessBrowserTest::PrepareTestCommandLine(CommandLine* command_line) { argument
222 test_launcher_utils::PrepareBrowserCommandLineForTests(command_line);
225 command_line->AppendSwitchASCII(switches::kTestType, kBrowserTestType);
228 if (command_line
263 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
[all...]
H A Din_process_browser_test.h189 void PrepareTestCommandLine(base::CommandLine* command_line);
H A Dtest_launcher_utils.cc7 #include "base/command_line.h"
23 void PrepareBrowserCommandLineForTests(CommandLine* command_line) { argument
25 command_line->AppendSwitch(switches::kDisableWebResources);
29 command_line->AppendSwitch(switches::kDisablePreconnect);
32 command_line->AppendSwitch(switches::kNoFirstRun);
36 command_line->AppendSwitch(switches::kNoDefaultBrowserCheck);
40 if (!command_line->HasSwitch(switches::kEnableLogging))
41 command_line->AppendSwitchASCII(switches::kEnableLogging, "stderr");
42 if (!command_line->HasSwitch(switches::kLoggingLevel))
43 command_line
[all...]
H A Dtest_launcher_utils.h20 // Appends browser switches to provided |command_line| to be used
22 void PrepareBrowserCommandLineForTests(base::CommandLine* command_line);
/external/chromium_org/chrome/test/nacl/
H A Dnacl_browsertest.cc14 #include "base/command_line.h"
217 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
218 NaClBrowserTestPnacl::SetUpCommandLine(command_line);
220 command_line->AppendSwitch(switches::kEnableNaClDebug);
224 command_line->AppendSwitch(switches::kNoSandbox);
281 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
282 NaClBrowserTestPnaclDebug::SetUpCommandLine(command_line);
283 command_line->AppendSwitchASCII(switches::kNaClDebugMask,
H A Dnacl_browsertest_util.cc8 #include "base/command_line.h"
197 void NaClBrowserTestBase::SetUpCommandLine(base::CommandLine* command_line) { argument
198 command_line->AppendSwitch(switches::kEnableNaCl);
292 base::CommandLine* command_line) {
293 NaClBrowserTestBase::SetUpCommandLine(command_line);
294 command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
311 base::CommandLine* command_line) {
312 NaClBrowserTestBase::SetUpCommandLine(command_line);
313 command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
317 CommandLine* command_line) {
291 SetUpCommandLine( base::CommandLine* command_line) argument
310 SetUpCommandLine( base::CommandLine* command_line) argument
316 SetUpCommandLine( CommandLine* command_line) argument
334 SetUpCommandLine( CommandLine* command_line) argument
[all...]
H A Dnacl_browsertest_util.h65 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
129 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
135 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
151 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
156 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
/external/chromium_org/chrome/test/perf/
H A Dbrowser_perf_test.cc7 #include "base/command_line.h"
18 void BrowserPerfTest::SetUpCommandLine(CommandLine* command_line) { argument
20 command_line->AppendSwitch(switches::kDisableBackgroundNetworking);
H A Dbrowser_perf_test.h21 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
/external/chromium_org/chrome/test/ppapi/
H A Dppapi_test.cc7 #include "base/command_line.h"
42 void AddPrivateSwitches(base::CommandLine* command_line) { argument
44 command_line->AppendSwitch(switches::kUnlimitedStorage);
45 command_line->AppendSwitchASCII(switches::kAllowNaClFileHandleAPI,
134 void PPAPITestBase::SetUpCommandLine(base::CommandLine* command_line) { argument
136 command_line->AppendSwitch(switches::kEnableFileCookies);
140 command_line->AppendSwitch(switches::kEnablePepperTesting);
143 command_line->AppendSwitch(switches::kDisableSmoothScrolling);
285 void PPAPITest::SetUpCommandLine(base::CommandLine* command_line) { argument
286 PPAPITestBase::SetUpCommandLine(command_line);
317 SetUpCommandLine(base::CommandLine* command_line) argument
326 SetUpCommandLine(base::CommandLine* command_line) argument
332 SetUpCommandLine( base::CommandLine* command_line) argument
338 SetUpCommandLine(base::CommandLine* command_line) argument
398 SetUpCommandLine( base::CommandLine* command_line) argument
411 SetUpCommandLine( base::CommandLine* command_line) argument
424 SetUpCommandLine( base::CommandLine* command_line) argument
430 SetUpCommandLine( base::CommandLine* command_line) argument
445 SetUpCommandLine( base::CommandLine* command_line) argument
451 SetUpCommandLine( base::CommandLine* command_line) argument
[all...]
H A Dppapi_test.h43 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
97 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
107 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
116 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
121 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
127 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
150 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
162 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
174 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
180 virtual void SetUpCommandLine(base::CommandLine* command_line);
[all...]
/external/chromium_org/chrome/test/remoting/
H A Dremote_desktop_browsertest.cc7 #include "base/command_line.h"
556 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
565 if (command_line->HasSwitch(kOverrideUserDataDir)) {
567 command_line->GetSwitchValuePath(kOverrideUserDataDir);
571 command_line->AppendSwitchPath(switches::kUserDataDir,
575 username_ = command_line->GetSwitchValueASCII(kUsername);
576 password_ = command_line->GetSwitchValueASCII(kkPassword);
577 me2me_pin_ = command_line->GetSwitchValueASCII(kMe2MePin);
578 remote_host_name_ = command_line->GetSwitchValueASCII(kRemoteHostName);
579 extension_name_ = command_line
[all...]
/external/chromium_org/chrome/tools/
H A Dwebforms_aggregator_unittests.py244 command_line = 'python -u -m SimpleHTTPServer %s' % self.PORT1
245 args = command_line.split()
250 command_line = 'python -u -m SimpleHTTPServer %s' % self.PORT2
251 args = command_line.split()
/external/chromium_org/chrome/utility/
H A Dchrome_content_utility_client.cc7 #include "base/command_line.h"
114 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
115 if (command_line->HasSwitch(switches::kUtilityProcessRunningElevated)) {
/external/chromium_org/chrome/utility/extensions/
H A Dextensions_handler.cc7 #include "base/command_line.h"
81 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
82 std::string lang = command_line->GetSwitchValueASCII(switches::kLang);

Completed in 267 milliseconds

<<11121314151617181920>>