| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 430 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
| 431 | 431 |
| 432 // Enables the notifications for the custodian of a supervised user when the | 432 // Enables the notifications for the custodian of a supervised user when the |
| 433 // supervised user sends an access request. | 433 // supervised user sends an access request. |
| 434 extern const char kEnableAccessRequestNotifications[] = | 434 extern const char kEnableAccessRequestNotifications[] = |
| 435 "enable-access-request-notifications"; | 435 "enable-access-request-notifications"; |
| 436 | 436 |
| 437 // Enables the <adview> tag in packaged apps. | 437 // Enables the <adview> tag in packaged apps. |
| 438 const char kEnableAdview[] = "enable-adview"; | 438 const char kEnableAdview[] = "enable-adview"; |
| 439 | 439 |
| 440 // Enable Answers in Suggest. |
| 441 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest"; |
| 442 |
| 440 // If set, the app list will be enabled as if enabled from CWS. | 443 // If set, the app list will be enabled as if enabled from CWS. |
| 441 const char kEnableAppList[] = "enable-app-list"; | 444 const char kEnableAppList[] = "enable-app-list"; |
| 442 | 445 |
| 443 // Enables the <window-controls> tag in platform apps. | 446 // Enables the <window-controls> tag in platform apps. |
| 444 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 447 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
| 445 | 448 |
| 446 // Enable OS integration for Chrome app file associations. | 449 // Enable OS integration for Chrome app file associations. |
| 447 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 450 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 448 | 451 |
| 449 // Show apps windows after the first paint. Windows will be shown significantly | 452 // Show apps windows after the first paint. Windows will be shown significantly |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 // Disables the new NTP. | 1325 // Disables the new NTP. |
| 1323 const char kDisableNewNTP[] = "disable-new-ntp"; | 1326 const char kDisableNewNTP[] = "disable-new-ntp"; |
| 1324 | 1327 |
| 1325 // Disables zero suggest experiment on Dev channel. | 1328 // Disables zero suggest experiment on Dev channel. |
| 1326 const char kDisableZeroSuggest[] = "disable-zero-suggest"; | 1329 const char kDisableZeroSuggest[] = "disable-zero-suggest"; |
| 1327 | 1330 |
| 1328 // Enable the accessibility tab switcher. | 1331 // Enable the accessibility tab switcher. |
| 1329 const char kEnableAccessibilityTabSwitcher[] = | 1332 const char kEnableAccessibilityTabSwitcher[] = |
| 1330 "enable-accessibility-tab-switcher"; | 1333 "enable-accessibility-tab-switcher"; |
| 1331 | 1334 |
| 1332 // Enable Answers in Suggest. | |
| 1333 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest"; | |
| 1334 | |
| 1335 // Enables app install alerts. | 1335 // Enables app install alerts. |
| 1336 const char kEnableAppInstallAlerts[] = "enable-app-install-alerts"; | 1336 const char kEnableAppInstallAlerts[] = "enable-app-install-alerts"; |
| 1337 | 1337 |
| 1338 // Enables Contextual Search | 1338 // Enables Contextual Search |
| 1339 const char kEnableContextualSearch[] = "contextual-search"; | 1339 const char kEnableContextualSearch[] = "contextual-search"; |
| 1340 | 1340 |
| 1341 // Enables the new NTP. | 1341 // Enables the new NTP. |
| 1342 const char kEnableNewNTP[] = "enable-new-ntp"; | 1342 const char kEnableNewNTP[] = "enable-new-ntp"; |
| 1343 | 1343 |
| 1344 // Enables zero suggest functionality on Dev channel, showing contextual | 1344 // Enables zero suggest functionality on Dev channel, showing contextual |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1474 | 1474 |
| 1475 // ----------------------------------------------------------------------------- | 1475 // ----------------------------------------------------------------------------- |
| 1476 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1476 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1477 // | 1477 // |
| 1478 // You were going to just dump your switches here, weren't you? Instead, please | 1478 // You were going to just dump your switches here, weren't you? Instead, please |
| 1479 // put them in alphabetical order above, or in order inside the appropriate | 1479 // put them in alphabetical order above, or in order inside the appropriate |
| 1480 // ifdef at the bottom. The order should match the header. | 1480 // ifdef at the bottom. The order should match the header. |
| 1481 // ----------------------------------------------------------------------------- | 1481 // ----------------------------------------------------------------------------- |
| 1482 | 1482 |
| 1483 } // namespace switches | 1483 } // namespace switches |
| OLD | NEW |