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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 // (see SettingsWindowEnabled() below). | 521 // (see SettingsWindowEnabled() below). |
522 const char kEnableSettingsWindow[] = "enable-settings-window"; | 522 const char kEnableSettingsWindow[] = "enable-settings-window"; |
523 const char kDisableSettingsWindow[] = "disable-settings-window"; | 523 const char kDisableSettingsWindow[] = "disable-settings-window"; |
524 | 524 |
525 // A new user experience for transitioning into fullscreen and mouse pointer | 525 // A new user experience for transitioning into fullscreen and mouse pointer |
526 // lock states. | 526 // lock states. |
527 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; | 527 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; |
528 const char kDisableSimplifiedFullscreenUI[] = | 528 const char kDisableSimplifiedFullscreenUI[] = |
529 "disable-simplified-fullscreen-ui"; | 529 "disable-simplified-fullscreen-ui"; |
530 | 530 |
| 531 // Enable the Site Engagement Eviction Policy which evicts temporary storage |
| 532 // using the site engagement service. Implicitly enables the site engagement |
| 533 // service. |
| 534 const char kEnableSiteEngagementEvictionPolicy[] = |
| 535 "enable-site-engagement-eviction-policy"; |
| 536 |
531 // Enable the Site Engagement service, which records interaction with sites and | 537 // Enable the Site Engagement service, which records interaction with sites and |
532 // allocates certain resources accordingly. | 538 // allocates certain resources accordingly. |
533 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; | 539 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; |
534 | 540 |
535 // Enables the supervised user managed bookmarks folder. | 541 // Enables the supervised user managed bookmarks folder. |
536 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 542 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
537 "enable-supervised-user-managed-bookmarks-folder"; | 543 "enable-supervised-user-managed-bookmarks-folder"; |
538 | 544 |
539 // Enables user control over muting tab audio from the tab strip. | 545 // Enables user control over muting tab audio from the tab strip. |
540 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 546 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1395 | 1401 |
1396 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
1397 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1403 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1398 // | 1404 // |
1399 // You were going to just dump your switches here, weren't you? Instead, please | 1405 // You were going to just dump your switches here, weren't you? Instead, please |
1400 // put them in alphabetical order above, or in order inside the appropriate | 1406 // put them in alphabetical order above, or in order inside the appropriate |
1401 // ifdef at the bottom. The order should match the header. | 1407 // ifdef at the bottom. The order should match the header. |
1402 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
1403 | 1409 |
1404 } // namespace switches | 1410 } // namespace switches |
OLD | NEW |