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

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

Issue 8332006: Optionally show component extensions in options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: switch name change Created 9 years, 2 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') | no next file » | 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) 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 // Enables the showing of an info-bar instructing user they can search directly 963 // Enables the showing of an info-bar instructing user they can search directly
964 // from the omnibox. 964 // from the omnibox.
965 const char kSearchInOmniboxHint[] = "search-in-omnibox-hint"; 965 const char kSearchInOmniboxHint[] = "search-in-omnibox-hint";
966 966
967 // The LSID of the account to use for the service process. 967 // The LSID of the account to use for the service process.
968 const char kServiceAccountLsid[] = "service-account-lsid"; 968 const char kServiceAccountLsid[] = "service-account-lsid";
969 969
970 // Annotates forms with Autofill field type predictions. 970 // Annotates forms with Autofill field type predictions.
971 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; 971 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
972 972
973 // Makes component extensions appear in chrome://settings/extensions
Aaron Boodman 2011/10/24 18:27:56 Nit: add a period :)
974 const char kShowComponentExtensionOptions[] =
975 "show-component-extension-options";
976
973 // See kHideIcons. 977 // See kHideIcons.
974 const char kShowIcons[] = "show-icons"; 978 const char kShowIcons[] = "show-icons";
975 979
976 // Renders a border around composited Render Layers to help debug and study 980 // Renders a border around composited Render Layers to help debug and study
977 // layer compositing. 981 // layer compositing.
978 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; 982 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders";
979 983
980 // Draws a textual dump of the compositor layer tree to help debug and study 984 // Draws a textual dump of the compositor layer tree to help debug and study
981 // layer compositing. 985 // layer compositing.
982 const char kShowCompositedLayerTree[] = "show-composited-layer-tree"; 986 const char kShowCompositedLayerTree[] = "show-composited-layer-tree";
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 1278
1275 // ----------------------------------------------------------------------------- 1279 // -----------------------------------------------------------------------------
1276 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1280 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1277 // 1281 //
1278 // You were going to just dump your switches here, weren't you? Instead, please 1282 // You were going to just dump your switches here, weren't you? Instead, please
1279 // put them in alphabetical order above, or in order inside the appropriate 1283 // put them in alphabetical order above, or in order inside the appropriate
1280 // ifdef at the bottom. The order should match the header. 1284 // ifdef at the bottom. The order should match the header.
1281 // ----------------------------------------------------------------------------- 1285 // -----------------------------------------------------------------------------
1282 1286
1283 } // namespace switches 1287 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698