HomeSort by relevance Sort by last modified time
    Searched refs:command_line (Results 26 - 50 of 868) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/
usage_stats_consent_mac.cc 9 #include "base/command_line.h"
24 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
25 if (command_line->HasSwitch(kHostConfigSwitchName)) {
27 command_line->GetSwitchValuePath(kHostConfigSwitchName);
service_urls.cc 7 #include "base/command_line.h"
36 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
37 CHECK(command_line);
38 if (command_line->HasSwitch(kDirectoryBaseUrlSwitch)) {
39 directory_base_url_ = command_line->GetSwitchValueASCII(
42 if (command_line->HasSwitch(kXmppServerAddressSwitch)) {
43 xmpp_server_address_ = command_line->GetSwitchValueASCII(
46 if (command_line->HasSwitch(kXmppServerDisableTlsSwitch)) {
49 if (command_line->HasSwitch(kDirectoryBotJidSwitch)) {
50 directory_bot_jid_ = command_line->GetSwitchValueASCII
    [all...]
  /external/chromium_org/ui/base/touch/
touch_enabled.cc 6 #include "base/command_line.h"
15 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
17 command_line.HasSwitch(switches::kTouchEvents) ?
18 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
  /external/chromium_org/ui/events/gestures/
unified_gesture_detector_enabled.cc 5 #include "base/command_line.h"
15 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
17 command_line.HasSwitch(switches::kUnifiedGestureDetector) ?
18 command_line.GetSwitchValueASCII(switches::kUnifiedGestureDetector) :
  /external/chromium_org/chrome/browser/first_run/
upgrade_util_win.h 31 bool DoUpgradeTasks(const base::CommandLine& command_line);
  /external/chromium_org/components/invalidation/
invalidation_service_util.cc 8 #include "base/command_line.h"
16 const CommandLine& command_line) {
19 if (command_line.HasSwitch(switches::kSyncNotificationHostPort)) {
22 command_line.GetSwitchValueASCII(
29 command_line.HasSwitch(switches::kSyncAllowInsecureXmppConnection);
invalidation_service_util.h 18 const base::CommandLine& command_line);
  /external/chromium_org/mojo/shell/
child_process.cc 7 #include "base/command_line.h"
23 const base::CommandLine& command_line) {
24 if (!command_line.HasSwitch(switches::kChildProcessType))
28 CHECK(base::StringToInt(command_line.GetSwitchValueASCII(
47 command_line);
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_notification_manager_factory_browsertest.cc 7 #include "base/command_line.h"
22 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
23 command_line->AppendSwitch(chromeos::switches::kLoginManager);
24 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
41 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
42 command_line->AppendSwitch(chromeos::switches::kGuestSession);
43 command_line->AppendSwitch(::switches::kIncognito);
44 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
45 command_line->AppendSwitchASCII(chromeos::switches::kLoginUser,
  /external/chromium_org/chrome/browser/chromeos/login/
chrome_restart_request.h 24 base::CommandLine* command_line);
27 void RestartChrome(const std::string& command_line);
login_browsertest.cc 6 #include "base/command_line.h"
35 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
36 command_line->AppendSwitchASCII(
38 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
45 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
46 command_line->AppendSwitch(chromeos::switches::kGuestSession);
47 command_line->AppendSwitch(::switches::kIncognito);
48 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
50 command_line->AppendSwitchASCII(chromeos::switches::kLoginUser,
57 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_commands_mac.cc 7 #include "base/command_line.h"
21 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
22 if (command_line->HasSwitch(switches::kEnableSimplifiedFullscreen))
  /external/chromium_org/chrome/browser/ui/webui/
downloads_ui_browsertest.cc 7 #include "base/command_line.h"
27 CommandLine* command_line) {
28 command_line->AppendSwitchASCII(switches::kSupervisedUserId, "asdf");
  /external/chromium_org/chrome/service/
service_process_unittest.cc 10 #include "base/command_line.h"
21 CommandLine command_line(CommandLine::NO_PROGRAM);
22 EXPECT_TRUE(process.Initialize(&main_message_loop, command_line, &state));
service_main.cc 27 if (parameters.command_line.HasSwitch(switches::kWaitForDebugger)) {
32 << parameters.command_line.GetCommandLineString();
44 parameters.command_line,
  /external/chromium_org/components/signin/core/common/
profile_management_switches.h 45 void EnableNewProfileManagementForTesting(base::CommandLine* command_line);
46 void EnableAccountConsistencyForTesting(base::CommandLine* command_line);
  /external/chromium_org/ppapi/proxy/
ppp_messaging_proxy_perftest.cc 5 #include "base/command_line.h"
60 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
61 if (command_line) {
62 if (command_line->HasSwitch("seed")) {
63 base::StringToInt(command_line->GetSwitchValueASCII("seed"),
66 if (command_line->HasSwitch("string_count")) {
67 base::StringToInt(command_line->GetSwitchValueASCII("string_count"),
70 if (command_line->HasSwitch("max_string_size")) {
71 base::StringToInt(command_line->GetSwitchValueASCII("max_string_size"),
  /external/chromium_org/tools/android/common/
daemon.cc 13 #include "base/command_line.h"
36 bool HasHelpSwitch(const CommandLine& command_line) {
37 return command_line.HasSwitch("h") || command_line.HasSwitch("help");
40 bool HasNoSpawnDaemonSwitch(const CommandLine& command_line) {
41 return command_line.HasSwitch(kNoSpawnDaemon);
  /external/chromium_org/chrome/browser/invalidation/
profile_invalidation_provider_factory_browsertest.cc 6 #include "base/command_line.h"
54 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
70 CommandLine* command_line) {
71 command_line->AppendSwitch(chromeos::switches::kLoginManager);
72 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user");
90 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
105 CommandLine* command_line) {
106 command_line->AppendSwitch(chromeos::switches::kGuestSession);
107 command_line->AppendSwitch(::switches::kIncognito);
108 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile, "user")
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/demo_mode/
demo_app_launcher_browsertest.cc 7 #include "base/command_line.h"
69 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
70 command_line->AppendSwitch(switches::kLoginManager);
71 command_line->AppendSwitch(switches::kForceLoginManagerInTests);
72 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
74 command_line->AppendSwitchASCII(switches::kDerelictIdleTimeout, "0");
75 command_line->AppendSwitchASCII(switches::kOobeTimerInterval, "0");
76 command_line->AppendSwitchASCII(switches::kDerelictDetectionTimeout, "0");
  /external/chromium_org/chrome/browser/chromeos/login/test/
wizard_in_process_browser_test.cc 7 #include "base/command_line.h"
31 void WizardInProcessBrowserTest::SetUpCommandLine(CommandLine* command_line) {
32 command_line->AppendSwitch(::switches::kNoStartupWindow);
33 command_line->AppendSwitch(switches::kLoginManager);
  /external/chromium_org/chrome/browser/ui/sync/
profile_signin_confirmation_helper_browsertest.cc 8 #include "base/command_line.h"
21 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
23 InProcessBrowserTest::SetUpCommandLine(command_line);
24 command_line->AppendSwitch(switches::kForceFirstRun);
  /external/chromium_org/chrome/common/
logging_chrome.h 34 void InitChromeLogging(const base::CommandLine& command_line,
39 base::FilePath GetSessionLogFile(const base::CommandLine& command_line);
42 void RedirectChromeLogging(const base::CommandLine& command_line);
  /external/chromium_org/content/browser/gpu/
compositor_util.cc 7 #include "base/command_line.h"
51 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
59 command_line.HasSwitch(switches::kDisableAccelerated2dCanvas) ||
78 command_line.HasSwitch(switches::kDisableExperimentalWebGL),
85 command_line.HasSwitch(switches::kDisableFlash3d),
93 command_line.HasSwitch(switches::kDisableFlashStage3d),
103 command_line.HasSwitch(switches::kDisableFlashStage3d),
112 command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode),
122 command_line.HasSwitch(switches::kDisableWebRtcHWEncoding),
132 command_line.HasSwitch(switches::kDisablePanelFitting)
    [all...]
  /external/chromium_org/content/common/
sandbox_init_win.cc 7 #include "base/command_line.h"
17 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
27 if (!command_line.HasSwitch(switches::kNoSandbox)) {
37 if (command_line.HasSwitch(switches::kNoSandbox))

Completed in 1190 milliseconds

12 3 4 5 6 7 8 91011>>