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

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

Issue 10837177: Add a menu item to content_shell to open devtools to make it more discoverable. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix android compile, and add gtk support 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
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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 // script connections to each other). 520 // script connections to each other).
521 const char kProcessPerTab[] = "process-per-tab"; 521 const char kProcessPerTab[] = "process-per-tab";
522 522
523 // The value of this switch determines whether the process is started as a 523 // The value of this switch determines whether the process is started as a
524 // renderer or plugin host. If it's empty, it's the browser. 524 // renderer or plugin host. If it's empty, it's the browser.
525 const char kProcessType[] = "type"; 525 const char kProcessType[] = "type";
526 526
527 // Register Pepper plugins (see pepper_plugin_registry.cc for its format). 527 // Register Pepper plugins (see pepper_plugin_registry.cc for its format).
528 const char kRegisterPepperPlugins[] = "register-pepper-plugins"; 528 const char kRegisterPepperPlugins[] = "register-pepper-plugins";
529 529
530 // Enables remote debug over HTTP on the specified port.
531 const char kRemoteDebuggingPort[] = "remote-debugging-port";
532
533 // Causes the renderer process to throw an assertion on launch. 530 // Causes the renderer process to throw an assertion on launch.
534 const char kRendererAssertTest[] = "renderer-assert-test"; 531 const char kRendererAssertTest[] = "renderer-assert-test";
535 532
536 // On POSIX only: the contents of this flag are prepended to the renderer 533 // 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". 534 // command line. Useful values might be "valgrind" or "xterm -e gdb --args".
538 const char kRendererCmdPrefix[] = "renderer-cmd-prefix"; 535 const char kRendererCmdPrefix[] = "renderer-cmd-prefix";
539 536
540 // Causes the process to run as renderer instead of as browser. 537 // Causes the process to run as renderer instead of as browser.
541 const char kRendererProcess[] = "renderer"; 538 const char kRendererProcess[] = "renderer";
542 539
(...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. 701 // Sets the width and height above which a composited layer will get tiled.
705 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 702 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
706 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 703 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
707 704
708 const char kEnableFixedPositionCreatesStackingContext[] 705 const char kEnableFixedPositionCreatesStackingContext[]
709 = "enable-fixed-position-creates-stacking-context"; 706 = "enable-fixed-position-creates-stacking-context";
710 const char kDisableFixedPositionCreatesStackingContext[] 707 const char kDisableFixedPositionCreatesStackingContext[]
711 = "disable-fixed-position-creates-stacking-context"; 708 = "disable-fixed-position-creates-stacking-context";
712 709
713 } // namespace switches 710 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698