| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 const char kEnableSupervisedUserBlacklist[] = | 608 const char kEnableSupervisedUserBlacklist[] = |
| 609 "enable-supervised-user-blacklist"; | 609 "enable-supervised-user-blacklist"; |
| 610 | 610 |
| 611 // Enables synced notifications. | 611 // Enables synced notifications. |
| 612 const char kEnableSyncSyncedNotifications[] = | 612 const char kEnableSyncSyncedNotifications[] = |
| 613 "enable-sync-synced-notifications"; | 613 "enable-sync-synced-notifications"; |
| 614 | 614 |
| 615 // Enables synced articles. | 615 // Enables synced articles. |
| 616 const char kEnableSyncArticles[] = "enable-sync-articles"; | 616 const char kEnableSyncArticles[] = "enable-sync-articles"; |
| 617 | 617 |
| 618 // Enables user control over muting tab audio from the tab strip. |
| 619 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
| 620 |
| 618 // Enables fanciful thumbnail processing. Used with NTP for | 621 // Enables fanciful thumbnail processing. Used with NTP for |
| 619 // instant-extended-api, where thumbnails are generally smaller. | 622 // instant-extended-api, where thumbnails are generally smaller. |
| 620 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 623 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 621 | 624 |
| 622 // Enables Translate experimental new UX which replaces the infobar. | 625 // Enables Translate experimental new UX which replaces the infobar. |
| 623 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 626 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
| 624 | 627 |
| 625 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 628 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 626 const char kEnableUserAlternateProtocolPorts[] = | 629 const char kEnableUserAlternateProtocolPorts[] = |
| 627 "enable-user-controlled-alternate-protocol-ports"; | 630 "enable-user-controlled-alternate-protocol-ports"; |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 | 1362 |
| 1360 // ----------------------------------------------------------------------------- | 1363 // ----------------------------------------------------------------------------- |
| 1361 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1364 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1362 // | 1365 // |
| 1363 // You were going to just dump your switches here, weren't you? Instead, please | 1366 // You were going to just dump your switches here, weren't you? Instead, please |
| 1364 // put them in alphabetical order above, or in order inside the appropriate | 1367 // put them in alphabetical order above, or in order inside the appropriate |
| 1365 // ifdef at the bottom. The order should match the header. | 1368 // ifdef at the bottom. The order should match the header. |
| 1366 // ----------------------------------------------------------------------------- | 1369 // ----------------------------------------------------------------------------- |
| 1367 | 1370 |
| 1368 } // namespace switches | 1371 } // namespace switches |
| OLD | NEW |