diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 17:07:25 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 17:07:25 +0000 |
commit | b41f1fc60dae06b6b5070d3d12ff2c38b0c0dd52 (patch) | |
tree | 0847cadf723732a25693c79ae13b4787eee9ee3a /chrome | |
parent | fe4066f2e2b4272b80021fce06f63756ed9e25ab (diff) | |
download | chromium_src-b41f1fc60dae06b6b5070d3d12ff2c38b0c0dd52.zip chromium_src-b41f1fc60dae06b6b5070d3d12ff2c38b0c0dd52.tar.gz chromium_src-b41f1fc60dae06b6b5070d3d12ff2c38b0c0dd52.tar.bz2 |
Remove unused chrome switches.
I also looked at the test_shell switches, but they are all used.
Review URL: http://codereview.chromium.org/108036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/chrome_switches.cc | 7 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 0 insertions, 9 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index be150ed..c2e1cbc 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -42,9 +42,6 @@ const wchar_t kRendererStartupDialog[] = L"renderer-startup-dialog"; // Causes the plugin process to display a dialog on launch. const wchar_t kPluginStartupDialog[] = L"plugin-startup-dialog"; -// Causes the test shell process to display a dialog on launch. -const wchar_t kTestShellStartupDialog[] = L"testshell-startup-dialog"; - // Specifies a command that should be used to launch the plugin process. Useful // for running the plugin process through purify or quantify. Ex: // --plugin-launcher="path\to\purify /Run=yes" @@ -128,10 +125,6 @@ const wchar_t kParentProfile[] = L"parent-profile"; // Specifies that the associated value should be launched in "application" mode. const wchar_t kApp[] = L"app"; -// Specifies the file that should be uploaded to the provided application. This -// switch is expected to be used with --app option. -const wchar_t kAppUploadFile[] = L"upload-file"; - // Specifies if the dom_automation_controller_ needs to be bound in the // renderer. This binding happens on per-frame basis and hence can potentially // be a performance bottleneck. One should only enable it when automating diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 87984aa..87e86c0 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -20,7 +20,6 @@ extern const wchar_t kBrowserCrashTest[]; extern const wchar_t kRendererCrashTest[]; extern const wchar_t kRendererStartupDialog[]; extern const wchar_t kPluginStartupDialog[]; -extern const wchar_t kTestShellStartupDialog[]; extern const wchar_t kPluginLauncher[]; extern const wchar_t kProcessChannelID[]; @@ -44,7 +43,6 @@ extern const wchar_t kDiskCacheDir[]; extern const wchar_t kEnableUserDataDirProfiles[]; extern const wchar_t kParentProfile[]; extern const wchar_t kApp[]; -extern const wchar_t kAppUploadFile[]; extern const wchar_t kDomAutomationController[]; extern const wchar_t kPluginPath[]; extern const wchar_t kUserAgent[]; |