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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
529 // (see SettingsWindowEnabled() below). | 529 // (see SettingsWindowEnabled() below). |
530 const char kEnableSettingsWindow[] = "enable-settings-window"; | 530 const char kEnableSettingsWindow[] = "enable-settings-window"; |
531 const char kDisableSettingsWindow[] = "disable-settings-window"; | 531 const char kDisableSettingsWindow[] = "disable-settings-window"; |
532 | 532 |
533 // A new user experience for transitioning into fullscreen and mouse pointer | 533 // A new user experience for transitioning into fullscreen and mouse pointer |
534 // lock states. | 534 // lock states. |
535 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; | 535 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; |
536 const char kDisableSimplifiedFullscreenUI[] = | 536 const char kDisableSimplifiedFullscreenUI[] = |
537 "disable-simplified-fullscreen-ui"; | 537 "disable-simplified-fullscreen-ui"; |
538 | 538 |
539 // Enable the Site Engagement Eviction Policy which evicts temporary storage | |
540 // using the site engagement service. | |
541 const char kEnableSiteEngagementEvictionPolicy[] = | |
542 "enable-site-engagement-eviction-policy"; | |
dominickn
2015/09/24 00:53:42
Nit: you should document in flags that this will i
calamity
2015/10/26 03:01:57
Done.
| |
543 | |
539 // Enable the Site Engagement service, which records interaction with sites and | 544 // Enable the Site Engagement service, which records interaction with sites and |
540 // allocates certain resources accordingly. | 545 // allocates certain resources accordingly. |
541 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; | 546 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; |
542 | 547 |
543 // Enables the suggestions service. | 548 // Enables the suggestions service. |
544 const char kEnableSuggestionsService[] = "enable-suggestions-service"; | 549 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
545 | 550 |
546 // Enables the supervised user managed bookmarks folder. | 551 // Enables the supervised user managed bookmarks folder. |
547 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 552 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
548 "enable-supervised-user-managed-bookmarks-folder"; | 553 "enable-supervised-user-managed-bookmarks-folder"; |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1391 | 1396 |
1392 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- |
1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1394 // | 1399 // |
1395 // You were going to just dump your switches here, weren't you? Instead, please | 1400 // You were going to just dump your switches here, weren't you? Instead, please |
1396 // put them in alphabetical order above, or in order inside the appropriate | 1401 // put them in alphabetical order above, or in order inside the appropriate |
1397 // ifdef at the bottom. The order should match the header. | 1402 // ifdef at the bottom. The order should match the header. |
1398 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
1399 | 1404 |
1400 } // namespace switches | 1405 } // namespace switches |
OLD | NEW |