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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 const char kSbDisableSideEffectFreeWhitelist[] = | 1235 const char kSbDisableSideEffectFreeWhitelist[] = |
1236 "safebrowsing-disable-side-effect-free-whitelist"; | 1236 "safebrowsing-disable-side-effect-free-whitelist"; |
1237 | 1237 |
1238 // Enables or disables extension scripts badges in the location bar. | 1238 // Enables or disables extension scripts badges in the location bar. |
1239 const char kScriptBadges[] = "script-badges"; | 1239 const char kScriptBadges[] = "script-badges"; |
1240 | 1240 |
1241 // Enable or diable the "script bubble" icon in the URL bar that tells you how | 1241 // Enable or diable the "script bubble" icon in the URL bar that tells you how |
1242 // many extensions are running scripts on a page. | 1242 // many extensions are running scripts on a page. |
1243 const char kScriptBubble[] = "script-bubble"; | 1243 const char kScriptBubble[] = "script-bubble"; |
1244 | 1244 |
1245 // Enables the showing of an info-bar instructing user they can search directly | |
1246 // from the omnibox. | |
1247 const char kSearchInOmniboxHint[] = "search-in-omnibox-hint"; | |
1248 | |
1249 // Causes the process to run as a service process. | 1245 // Causes the process to run as a service process. |
1250 const char kServiceProcess[] = "service"; | 1246 const char kServiceProcess[] = "service"; |
1251 | 1247 |
1252 // Sets a token in the token service, for testing. | 1248 // Sets a token in the token service, for testing. |
1253 const char kSetToken[] = "set-token"; | 1249 const char kSetToken[] = "set-token"; |
1254 | 1250 |
1255 // If true the app list will be shown. | 1251 // If true the app list will be shown. |
1256 const char kShowAppList[] = "show-app-list"; | 1252 const char kShowAppList[] = "show-app-list"; |
1257 | 1253 |
1258 // Makes component extensions appear in chrome://settings/extensions. | 1254 // Makes component extensions appear in chrome://settings/extensions. |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 | 1589 |
1594 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1596 // | 1592 // |
1597 // You were going to just dump your switches here, weren't you? Instead, please | 1593 // You were going to just dump your switches here, weren't you? Instead, please |
1598 // put them in alphabetical order above, or in order inside the appropriate | 1594 // put them in alphabetical order above, or in order inside the appropriate |
1599 // ifdef at the bottom. The order should match the header. | 1595 // ifdef at the bottom. The order should match the header. |
1600 // ----------------------------------------------------------------------------- | 1596 // ----------------------------------------------------------------------------- |
1601 | 1597 |
1602 } // namespace switches | 1598 } // namespace switches |
OLD | NEW |