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

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

Issue 10829142: Disable the managed storage API behind a flag for M22. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated docs 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 | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/storage.json » ('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 "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
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 it is released.
Nico 2012/08/02 15:56:10 nit: Add a TODO to remove once bug 108992 is fixed
Joao da Silva 2012/08/03 08:23:31 Done.
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
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
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/storage.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698