Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1212)

Side by Side Diff: content/public/common/content_switches.cc

Issue 10829303: Add --remote-debugging-port back to content_shell since nduca mentioned he wants to use it with And… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/shell/shell_browser_main_parts.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 // script connections to each other). 523 // script connections to each other).
524 const char kProcessPerTab[] = "process-per-tab"; 524 const char kProcessPerTab[] = "process-per-tab";
525 525
526 // The value of this switch determines whether the process is started as a 526 // The value of this switch determines whether the process is started as a
527 // renderer or plugin host. If it's empty, it's the browser. 527 // renderer or plugin host. If it's empty, it's the browser.
528 const char kProcessType[] = "type"; 528 const char kProcessType[] = "type";
529 529
530 // Register Pepper plugins (see pepper_plugin_registry.cc for its format). 530 // Register Pepper plugins (see pepper_plugin_registry.cc for its format).
531 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; 531 const char kRegisterPepperPlugins[] = "register-pepper-plugins";
532 532
533 // Enables remote debug over HTTP on the specified port.
534 const char kRemoteDebuggingPort[] = "remote-debugging-port";
535
533 // Causes the renderer process to throw an assertion on launch. 536 // Causes the renderer process to throw an assertion on launch.
534 const char kRendererAssertTest[] = "renderer-assert-test"; 537 const char kRendererAssertTest[] = "renderer-assert-test";
535 538
536 // On POSIX only: the contents of this flag are prepended to the renderer 539 // On POSIX only: the contents of this flag are prepended to the renderer
537 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". 540 // command line. Useful values might be "valgrind" or "xterm -e gdb --args".
538 const char kRendererCmdPrefix[] = "renderer-cmd-prefix"; 541 const char kRendererCmdPrefix[] = "renderer-cmd-prefix";
539 542
540 // Causes the process to run as renderer instead of as browser. 543 // Causes the process to run as renderer instead of as browser.
541 const char kRendererProcess[] = "renderer"; 544 const char kRendererProcess[] = "renderer";
542 545
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 // Sets the width and height above which a composited layer will get tiled. 707 // Sets the width and height above which a composited layer will get tiled.
705 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 708 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
706 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 709 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
707 710
708 const char kEnableFixedPositionCreatesStackingContext[] 711 const char kEnableFixedPositionCreatesStackingContext[]
709 = "enable-fixed-position-creates-stacking-context"; 712 = "enable-fixed-position-creates-stacking-context";
710 const char kDisableFixedPositionCreatesStackingContext[] 713 const char kDisableFixedPositionCreatesStackingContext[]
711 = "disable-fixed-position-creates-stacking-context"; 714 = "disable-fixed-position-creates-stacking-context";
712 715
713 } // namespace switches 716 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/shell/shell_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698