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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 const char kDisableShowSavedCopy[] = "disable"; | 976 const char kDisableShowSavedCopy[] = "disable"; |
977 | 977 |
978 // Does not show an infobar when an extension attaches to a page using | 978 // Does not show an infobar when an extension attaches to a page using |
979 // chrome.debugger page. Required to attach to extension background pages. | 979 // chrome.debugger page. Required to attach to extension background pages. |
980 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 980 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
981 | 981 |
982 // Causes Chrome to launch without opening any windows by default. Useful if | 982 // Causes Chrome to launch without opening any windows by default. Useful if |
983 // one wishes to use Chrome as an ash server. | 983 // one wishes to use Chrome as an ash server. |
984 const char kSilentLaunch[] = "silent-launch"; | 984 const char kSilentLaunch[] = "silent-launch"; |
985 | 985 |
| 986 // Simplifies the support string in the Clear Browsing Data dialog. |
| 987 const char kSimpleClearBrowsingDataSupportString[] = |
| 988 "simple-clear-browsing-data-support-string"; |
| 989 |
986 // Simulates that elevation is needed to recover upgrade channel. | 990 // Simulates that elevation is needed to recover upgrade channel. |
987 const char kSimulateElevatedRecovery[] = "simulate-elevated-recovery"; | 991 const char kSimulateElevatedRecovery[] = "simulate-elevated-recovery"; |
988 | 992 |
989 // Simulates a critical update being available. | 993 // Simulates a critical update being available. |
990 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; | 994 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
991 | 995 |
992 // Simulates that current version is outdated. | 996 // Simulates that current version is outdated. |
993 const char kSimulateOutdated[] = "simulate-outdated"; | 997 const char kSimulateOutdated[] = "simulate-outdated"; |
994 | 998 |
995 // Simulates that current version is outdated and auto-update is off. | 999 // Simulates that current version is outdated and auto-update is off. |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 | 1391 |
1388 // ----------------------------------------------------------------------------- | 1392 // ----------------------------------------------------------------------------- |
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1390 // | 1394 // |
1391 // You were going to just dump your switches here, weren't you? Instead, please | 1395 // You were going to just dump your switches here, weren't you? Instead, please |
1392 // put them in alphabetical order above, or in order inside the appropriate | 1396 // put them in alphabetical order above, or in order inside the appropriate |
1393 // ifdef at the bottom. The order should match the header. | 1397 // ifdef at the bottom. The order should match the header. |
1394 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
1395 | 1399 |
1396 } // namespace switches | 1400 } // namespace switches |
OLD | NEW |