Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1363523003: Enable SiteEngagementEvictionPolicy behind --enable-site-eviction-policy flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lru_policy_gooood
Patch Set: selfnit Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 // (see SettingsWindowEnabled() below). 524 // (see SettingsWindowEnabled() below).
525 const char kEnableSettingsWindow[] = "enable-settings-window"; 525 const char kEnableSettingsWindow[] = "enable-settings-window";
526 const char kDisableSettingsWindow[] = "disable-settings-window"; 526 const char kDisableSettingsWindow[] = "disable-settings-window";
527 527
528 // A new user experience for transitioning into fullscreen and mouse pointer 528 // A new user experience for transitioning into fullscreen and mouse pointer
529 // lock states. 529 // lock states.
530 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui"; 530 const char kEnableSimplifiedFullscreenUI[] = "enable-simplified-fullscreen-ui";
531 const char kDisableSimplifiedFullscreenUI[] = 531 const char kDisableSimplifiedFullscreenUI[] =
532 "disable-simplified-fullscreen-ui"; 532 "disable-simplified-fullscreen-ui";
533 533
534 // Enable the Site Engagement Eviction Policy which evicts temporary storage
535 // using the site engagement service. Implicitly enables the site engagement
536 // service.
537 const char kEnableSiteEngagementEvictionPolicy[] =
538 "enable-site-engagement-eviction-policy";
539
534 // Enable the Site Engagement service, which records interaction with sites and 540 // Enable the Site Engagement service, which records interaction with sites and
535 // allocates certain resources accordingly. 541 // allocates certain resources accordingly.
536 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; 542 const char kEnableSiteEngagementService[] = "enable-site-engagement-service";
537 543
538 // Enables the suggestions service. 544 // Enables the suggestions service.
539 const char kEnableSuggestionsService[] = "enable-suggestions-service"; 545 const char kEnableSuggestionsService[] = "enable-suggestions-service";
540 546
541 // Enables the supervised user managed bookmarks folder. 547 // Enables the supervised user managed bookmarks folder.
542 const char kEnableSupervisedUserManagedBookmarksFolder[] = 548 const char kEnableSupervisedUserManagedBookmarksFolder[] =
543 "enable-supervised-user-managed-bookmarks-folder"; 549 "enable-supervised-user-managed-bookmarks-folder";
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 1425
1420 // ----------------------------------------------------------------------------- 1426 // -----------------------------------------------------------------------------
1421 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1427 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1422 // 1428 //
1423 // You were going to just dump your switches here, weren't you? Instead, please 1429 // You were going to just dump your switches here, weren't you? Instead, please
1424 // put them in alphabetical order above, or in order inside the appropriate 1430 // put them in alphabetical order above, or in order inside the appropriate
1425 // ifdef at the bottom. The order should match the header. 1431 // ifdef at the bottom. The order should match the header.
1426 // ----------------------------------------------------------------------------- 1432 // -----------------------------------------------------------------------------
1427 1433
1428 } // namespace switches 1434 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698