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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 6711024: Example of how to interpose yourself in a message stream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 // in-renderer thumbnailing, as we can use more information to determine 436 // in-renderer thumbnailing, as we can use more information to determine
437 // if we need to update thumbnails. 437 // if we need to update thumbnails.
438 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; 438 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing";
439 439
440 // Enable IPv6 support, even if probes suggest that it may not be fully 440 // Enable IPv6 support, even if probes suggest that it may not be fully
441 // supported. Some probes may require internet connections, and this flag will 441 // supported. Some probes may require internet connections, and this flag will
442 // allow support independent of application testing. 442 // allow support independent of application testing.
443 // This flag overrides "disable-ipv6" which appears elswhere in this file. 443 // This flag overrides "disable-ipv6" which appears elswhere in this file.
444 const char kEnableIPv6[] = "enable-ipv6"; 444 const char kEnableIPv6[] = "enable-ipv6";
445 445
446 /// Enable the IPC fuzzer for reliability testing
447 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing";
448
446 // Enables IP Pooling within the networks stack (SPDY only). When a connection 449 // Enables IP Pooling within the networks stack (SPDY only). When a connection
447 // is needed for a domain which shares an IP with an existing connection, 450 // is needed for a domain which shares an IP with an existing connection,
448 // attempt to use the existing connection. 451 // attempt to use the existing connection.
449 const char kEnableIPPooling[] = "enable-ip-pooling"; 452 const char kEnableIPPooling[] = "enable-ip-pooling";
450 453
451 // Allows reporting memory info (JS heap size) to page. 454 // Allows reporting memory info (JS heap size) to page.
452 const char kEnableMemoryInfo[] = "enable-memory-info"; 455 const char kEnableMemoryInfo[] = "enable-memory-info";
453 456
454 // Runs the Native Client inside the renderer process and enables GPU plugin 457 // Runs the Native Client inside the renderer process and enables GPU plugin
455 // (internally adds lEnableGpuPlugin to the command line). 458 // (internally adds lEnableGpuPlugin to the command line).
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 1135
1133 // ----------------------------------------------------------------------------- 1136 // -----------------------------------------------------------------------------
1134 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1137 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1135 // 1138 //
1136 // You were going to just dump your switches here, weren't you? Instead, 1139 // You were going to just dump your switches here, weren't you? Instead,
1137 // please put them in alphabetical order above, or in order inside the 1140 // please put them in alphabetical order above, or in order inside the
1138 // appropriate ifdef at the bottom. The order should match the header. 1141 // appropriate ifdef at the bottom. The order should match the header.
1139 // ----------------------------------------------------------------------------- 1142 // -----------------------------------------------------------------------------
1140 1143
1141 } // namespace switches 1144 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698