| 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 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1323 | 1323 |
| 1324 // Causes the process to run as a service process. | 1324 // Causes the process to run as a service process. |
| 1325 const char kServiceProcess[] = "service"; | 1325 const char kServiceProcess[] = "service"; |
| 1326 | 1326 |
| 1327 // Sets a token in the token service, for testing. | 1327 // Sets a token in the token service, for testing. |
| 1328 const char kSetToken[] = "set-token"; | 1328 const char kSetToken[] = "set-token"; |
| 1329 | 1329 |
| 1330 // If true the app list will be shown. | 1330 // If true the app list will be shown. |
| 1331 const char kShowAppList[] = "show-app-list"; | 1331 const char kShowAppList[] = "show-app-list"; |
| 1332 | 1332 |
| 1333 // If true the app list will show the start page webui. | |
| 1334 const char kShowAppListStartPage[] = "show-app-list-start-page"; | |
| 1335 | |
| 1336 // See kHideIcons. | 1333 // See kHideIcons. |
| 1337 const char kShowIcons[] = "show-icons"; | 1334 const char kShowIcons[] = "show-icons"; |
| 1338 | 1335 |
| 1339 // Marks a renderer as the signin process. | 1336 // Marks a renderer as the signin process. |
| 1340 const char kSigninProcess[] = "signin-process"; | 1337 const char kSigninProcess[] = "signin-process"; |
| 1341 | 1338 |
| 1342 // Does not show an infobar when an extension attaches to a page using | 1339 // Does not show an infobar when an extension attaches to a page using |
| 1343 // chrome.debugger page. Required to attach to extension background pages. | 1340 // chrome.debugger page. Required to attach to extension background pages. |
| 1344 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 1341 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
| 1345 | 1342 |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1676 | 1673 |
| 1677 // ----------------------------------------------------------------------------- | 1674 // ----------------------------------------------------------------------------- |
| 1678 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1679 // | 1676 // |
| 1680 // You were going to just dump your switches here, weren't you? Instead, please | 1677 // You were going to just dump your switches here, weren't you? Instead, please |
| 1681 // put them in alphabetical order above, or in order inside the appropriate | 1678 // put them in alphabetical order above, or in order inside the appropriate |
| 1682 // ifdef at the bottom. The order should match the header. | 1679 // ifdef at the bottom. The order should match the header. |
| 1683 // ----------------------------------------------------------------------------- | 1680 // ----------------------------------------------------------------------------- |
| 1684 | 1681 |
| 1685 } // namespace switches | 1682 } // namespace switches |
| OLD | NEW |