| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 // Enable the Site Engagement Eviction Policy which evicts temporary storage | 517 // Enable the Site Engagement Eviction Policy which evicts temporary storage |
| 518 // using the site engagement service. Implicitly enables the site engagement | 518 // using the site engagement service. Implicitly enables the site engagement |
| 519 // service. | 519 // service. |
| 520 const char kEnableSiteEngagementEvictionPolicy[] = | 520 const char kEnableSiteEngagementEvictionPolicy[] = |
| 521 "enable-site-engagement-eviction-policy"; | 521 "enable-site-engagement-eviction-policy"; |
| 522 | 522 |
| 523 // Enable the Site Engagement service, which records interaction with sites and | 523 // Enable the Site Engagement service, which records interaction with sites and |
| 524 // allocates certain resources accordingly. | 524 // allocates certain resources accordingly. |
| 525 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; | 525 const char kEnableSiteEngagementService[] = "enable-site-engagement-service"; |
| 526 | 526 |
| 527 // Enables the speculative launch of Service Workers on mouse/touch events. |
| 528 const char kEnableSupeculativeLaunchServiceWorker[] = |
| 529 "enable-speculative-launch-service-worker"; |
| 530 |
| 527 // Enables the supervised user managed bookmarks folder. | 531 // Enables the supervised user managed bookmarks folder. |
| 528 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 532 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
| 529 "enable-supervised-user-managed-bookmarks-folder"; | 533 "enable-supervised-user-managed-bookmarks-folder"; |
| 530 | 534 |
| 531 // Enables user control over muting tab audio from the tab strip. | 535 // Enables user control over muting tab audio from the tab strip. |
| 532 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 536 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
| 533 | 537 |
| 534 // Enables fanciful thumbnail processing. Used with NTP for | 538 // Enables fanciful thumbnail processing. Used with NTP for |
| 535 // instant-extended-api, where thumbnails are generally smaller. | 539 // instant-extended-api, where thumbnails are generally smaller. |
| 536 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 540 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 | 1333 |
| 1330 // ----------------------------------------------------------------------------- | 1334 // ----------------------------------------------------------------------------- |
| 1331 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1335 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1332 // | 1336 // |
| 1333 // You were going to just dump your switches here, weren't you? Instead, please | 1337 // You were going to just dump your switches here, weren't you? Instead, please |
| 1334 // put them in alphabetical order above, or in order inside the appropriate | 1338 // put them in alphabetical order above, or in order inside the appropriate |
| 1335 // ifdef at the bottom. The order should match the header. | 1339 // ifdef at the bottom. The order should match the header. |
| 1336 // ----------------------------------------------------------------------------- | 1340 // ----------------------------------------------------------------------------- |
| 1337 | 1341 |
| 1338 } // namespace switches | 1342 } // namespace switches |
| OLD | NEW |