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 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1245 | 1245 |
1246 // Sets a token in the token service, for testing. | 1246 // Sets a token in the token service, for testing. |
1247 const char kSetToken[] = "set-token"; | 1247 const char kSetToken[] = "set-token"; |
1248 | 1248 |
1249 // If true the app list will be shown. | 1249 // If true the app list will be shown. |
1250 const char kShowAppList[] = "show-app-list"; | 1250 const char kShowAppList[] = "show-app-list"; |
1251 | 1251 |
1252 // See kHideIcons. | 1252 // See kHideIcons. |
1253 const char kShowIcons[] = "show-icons"; | 1253 const char kShowIcons[] = "show-icons"; |
1254 | 1254 |
1255 // If true the alignment of the launcher can be changed. | 1255 // If true the alignment of the shelf can be changed. |
1256 const char kShowLauncherAlignmentMenu[] = "show-launcher-alignment-menu"; | 1256 const char kShowShelfAlignmentMenu[] = "show-launcher-alignment-menu"; |
1257 | 1257 |
1258 // Marks a renderer as the signin process. | 1258 // Marks a renderer as the signin process. |
1259 const char kSigninProcess[] = "signin-process"; | 1259 const char kSigninProcess[] = "signin-process"; |
1260 | 1260 |
1261 // Does not show an infobar when an extension attaches to a page using | 1261 // Does not show an infobar when an extension attaches to a page using |
1262 // chrome.debugger page. Required to attach to extension background pages. | 1262 // chrome.debugger page. Required to attach to extension background pages. |
1263 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 1263 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
1264 | 1264 |
1265 // Changes the DCHECKS to dump memory and continue instead of displaying error | 1265 // Changes the DCHECKS to dump memory and continue instead of displaying error |
1266 // dialog. This is valid only in Release mode when --enable-dcheck is | 1266 // dialog. This is valid only in Release mode when --enable-dcheck is |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1601 | 1601 |
1602 // ----------------------------------------------------------------------------- | 1602 // ----------------------------------------------------------------------------- |
1603 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1603 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1604 // | 1604 // |
1605 // You were going to just dump your switches here, weren't you? Instead, please | 1605 // You were going to just dump your switches here, weren't you? Instead, please |
1606 // put them in alphabetical order above, or in order inside the appropriate | 1606 // put them in alphabetical order above, or in order inside the appropriate |
1607 // ifdef at the bottom. The order should match the header. | 1607 // ifdef at the bottom. The order should match the header. |
1608 // ----------------------------------------------------------------------------- | 1608 // ----------------------------------------------------------------------------- |
1609 | 1609 |
1610 } // namespace switches | 1610 } // namespace switches |
OLD | NEW |