| 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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 // A new user experience for transitioning into fullscreen and mouse pointer | 527 // A new user experience for transitioning into fullscreen and mouse pointer |
| 528 // lock states. | 528 // lock states. |
| 529 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; | 529 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; |
| 530 const char kDisableSimplifiedFullscreenUI[] = | 530 const char kDisableSimplifiedFullscreenUI[] = |
| 531 "disable-simplified-fullscreen-ui"; | 531 "disable-simplified-fullscreen-ui"; |
| 532 | 532 |
| 533 // Enable the Site Engagement service, which records interaction with sites and | 533 // Enable the Site Engagement service, which records interaction with sites and |
| 534 // allocates certain resources accordingly. | 534 // allocates certain resources accordingly. |
| 535 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; | 535 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; |
| 536 | 536 |
| 537 // Enable the Site Engagement eviction policy for temporary storage. This |
| 538 // implies --enable-site-engagement-service. |
| 539 const char kEnableSiteEngagementStorageEviction[] = |
| 540 "enable-site-engagement-storage-eviction"; |
| 541 |
| 537 // Enables the suggestions service. | 542 // Enables the suggestions service. |
| 538 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 543 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
| 539 | 544 |
| 540 // Enables the supervised user managed bookmarks folder. | 545 // Enables the supervised user managed bookmarks folder. |
| 541 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 546 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
| 542 "enable-supervised-user-managed-bookmarks-folder"; | 547 "enable-supervised-user-managed-bookmarks-folder"; |
| 543 | 548 |
| 544 // Enables user control over muting tab audio from the tab strip. | 549 // Enables user control over muting tab audio from the tab strip. |
| 545 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 550 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
| 546 | 551 |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 | 1427 |
| 1423 // ----------------------------------------------------------------------------- | 1428 // ----------------------------------------------------------------------------- |
| 1424 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1429 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1425 // | 1430 // |
| 1426 // You were going to just dump your switches here, weren't you? Instead, please | 1431 // You were going to just dump your switches here, weren't you? Instead, please |
| 1427 // put them in alphabetical order above, or in order inside the appropriate | 1432 // put them in alphabetical order above, or in order inside the appropriate |
| 1428 // ifdef at the bottom. The order should match the header. | 1433 // ifdef at the bottom. The order should match the header. |
| 1429 // ----------------------------------------------------------------------------- | 1434 // ----------------------------------------------------------------------------- |
| 1430 | 1435 |
| 1431 } // namespace switches | 1436 } // namespace switches |
| OLD | NEW |