OLD | NEW |
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 "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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 const char kEnableIPv6[] = "enable-ipv6"; | 556 const char kEnableIPv6[] = "enable-ipv6"; |
557 | 557 |
558 /// Enables the IPC fuzzer for reliability testing | 558 /// Enables the IPC fuzzer for reliability testing |
559 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; | 559 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; |
560 | 560 |
561 // Enables IP Pooling within the networks stack (SPDY only). When a connection | 561 // Enables IP Pooling within the networks stack (SPDY only). When a connection |
562 // is needed for a domain which shares an IP with an existing connection, | 562 // is needed for a domain which shares an IP with an existing connection, |
563 // attempt to use the existing connection. | 563 // attempt to use the existing connection. |
564 const char kEnableIPPooling[] = "enable-ip-pooling"; | 564 const char kEnableIPPooling[] = "enable-ip-pooling"; |
565 | 565 |
| 566 // The managed storage extension API is disabled by default for now. This |
| 567 // flag can be used to enable it until http://crbug.com/108992 is fixed. |
| 568 extern const char kEnableManagedStorage[] = "enable-managed-storage"; |
| 569 |
566 // Enables media gallery UI elements and permission management. | 570 // Enables media gallery UI elements and permission management. |
567 const char kEnableMediaGalleryUI[] = "enable-media-gallery-ui"; | 571 const char kEnableMediaGalleryUI[] = "enable-media-gallery-ui"; |
568 | 572 |
569 // Allows reporting memory info (JS heap size) to page. | 573 // Allows reporting memory info (JS heap size) to page. |
570 const char kEnableMemoryInfo[] = "enable-memory-info"; | 574 const char kEnableMemoryInfo[] = "enable-memory-info"; |
571 | 575 |
572 // Runs the Native Client inside the renderer process and enables GPU plugin | 576 // Runs the Native Client inside the renderer process and enables GPU plugin |
573 // (internally adds lEnableGpuPlugin to the command line). | 577 // (internally adds lEnableGpuPlugin to the command line). |
574 const char kEnableNaCl[] = "enable-nacl"; | 578 const char kEnableNaCl[] = "enable-nacl"; |
575 | 579 |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1528 | 1532 |
1529 // ----------------------------------------------------------------------------- | 1533 // ----------------------------------------------------------------------------- |
1530 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1534 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1531 // | 1535 // |
1532 // You were going to just dump your switches here, weren't you? Instead, please | 1536 // You were going to just dump your switches here, weren't you? Instead, please |
1533 // put them in alphabetical order above, or in order inside the appropriate | 1537 // put them in alphabetical order above, or in order inside the appropriate |
1534 // ifdef at the bottom. The order should match the header. | 1538 // ifdef at the bottom. The order should match the header. |
1535 // ----------------------------------------------------------------------------- | 1539 // ----------------------------------------------------------------------------- |
1536 | 1540 |
1537 } // namespace switches | 1541 } // namespace switches |
OLD | NEW |