diff options
author | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-24 17:40:37 +0000 |
---|---|---|
committer | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-24 17:40:37 +0000 |
commit | 90b068e8cee296f9cb6c5b4d3d744daef3de8420 (patch) | |
tree | 9d93f1bf6985e767a34e26456e550558aecf5f71 /content/public | |
parent | 509c2a30697e4cd824fec8e25dab7600bc49512d (diff) | |
download | chromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.zip chromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.tar.gz chromium_src-90b068e8cee296f9cb6c5b4d3d744daef3de8420.tar.bz2 |
DevTools: remove support for legacy remote debugger.
DevTools remote debugging protocol supersedes the legacy protocol and old implementation should be removed.
BUG=104625
TEST=Existing tests
Review URL: http://codereview.chromium.org/8635005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/common/content_switches.cc | 3 | ||||
-rw-r--r-- | content/public/common/content_switches.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc index 08e6e50..a9e1083 100644 --- a/content/public/common/content_switches.cc +++ b/content/public/common/content_switches.cc @@ -431,9 +431,6 @@ const char kProcessType[] = "type"; // Register Pepper plugins (see pepper_plugin_registry.cc for its format). const char kRegisterPepperPlugins[] = "register-pepper-plugins"; -// Enable remote debug / automation shell on the specified port. -const char kRemoteShellPort[] = "remote-shell-port"; - // Causes the renderer process to throw an assertion on launch. const char kRendererAssertTest[] = "renderer-assert-test"; diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h index 1ae5ce7..d1d805f16 100644 --- a/content/public/common/content_switches.h +++ b/content/public/common/content_switches.h @@ -136,7 +136,6 @@ CONTENT_EXPORT extern const char kProcessPerTab[]; CONTENT_EXPORT extern const char kProcessType[]; CONTENT_EXPORT extern const char kRecordMode[]; CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; -CONTENT_EXPORT extern const char kRemoteShellPort[]; CONTENT_EXPORT extern const char kRendererAssertTest[]; extern const char kRendererCmdPrefix[]; CONTENT_EXPORT extern const char kRendererCrashTest[]; |