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

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

Issue 434026: disable extension toolstrips by default, adding (Closed)
Patch Set: fix a failing test Created 11 years, 1 month 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 // Enables extension APIs that are in development. 177 // Enables extension APIs that are in development.
178 const char kEnableExperimentalExtensionApis[] = 178 const char kEnableExperimentalExtensionApis[] =
179 "enable-experimental-extension-apis"; 179 "enable-experimental-extension-apis";
180 180
181 // Enable experimental WebGL support. 181 // Enable experimental WebGL support.
182 const char kEnableExperimentalWebGL[] = "enable-webgl"; 182 const char kEnableExperimentalWebGL[] = "enable-webgl";
183 183
184 // Enable experimental timeline API. 184 // Enable experimental timeline API.
185 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 185 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
186 186
187 // Enable extension toolstrips (deprecated API - will be removed).
188 const char kEnableExtensionToolstrips[] = "enable-extension-toolstrips";
189
187 // Enable the fastback page cache. 190 // Enable the fastback page cache.
188 const char kEnableFastback[] = "enable-fastback"; 191 const char kEnableFastback[] = "enable-fastback";
189 192
190 // By default, cookies are not allowed on file://. They are needed for 193 // By default, cookies are not allowed on file://. They are needed for
191 // testing, for example page cycler and layout tests. See bug 1157243. 194 // testing, for example page cycler and layout tests. See bug 1157243.
192 const char kEnableFileCookies[] = "enable-file-cookies"; 195 const char kEnableFileCookies[] = "enable-file-cookies";
193 196
194 // Disable LocalStorage. 197 // Disable LocalStorage.
195 const char kDisableLocalStorage[] = "disable-local-storage"; 198 const char kDisableLocalStorage[] = "disable-local-storage";
196 199
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 702
700 // ----------------------------------------------------------------------------- 703 // -----------------------------------------------------------------------------
701 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 704 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
702 // 705 //
703 // You were going to just dump your switches here, weren't you? Instead, 706 // You were going to just dump your switches here, weren't you? Instead,
704 // please put them in alphabetical order above, or in order inside the 707 // please put them in alphabetical order above, or in order inside the
705 // appropriate ifdef at the bottom. The order should match the header. 708 // appropriate ifdef at the bottom. The order should match the header.
706 // ----------------------------------------------------------------------------- 709 // -----------------------------------------------------------------------------
707 710
708 } // namespace switches 711 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698