| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 2637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2648 const char kExpensiveBackgroundTimerThrottlingName[] = | 2648 const char kExpensiveBackgroundTimerThrottlingName[] = |
| 2649 "Throttle expensive background timers"; | 2649 "Throttle expensive background timers"; |
| 2650 | 2650 |
| 2651 const char kExpensiveBackgroundTimerThrottlingDescription[] = | 2651 const char kExpensiveBackgroundTimerThrottlingDescription[] = |
| 2652 "Enables intervention to limit CPU usage of background timers to 1%."; | 2652 "Enables intervention to limit CPU usage of background timers to 1%."; |
| 2653 | 2653 |
| 2654 // Enable default MediaSession flag | 2654 // Enable default MediaSession flag |
| 2655 | 2655 |
| 2656 #if !defined(OS_ANDROID) | 2656 #if !defined(OS_ANDROID) |
| 2657 | 2657 |
| 2658 const char kEnableDefaultMediaSessionName[] = "Manage audio focus across tabs"; | 2658 const char kEnableAudioFocusName[] = "Manage audio focus across tabs"; |
| 2659 | 2659 |
| 2660 const char kEnableDefaultMediaSessionDescription[] = | 2660 const char kEnableAudioFocusDescription[] = |
| 2661 "Manage audio focus across tabs to improve the audio mixing."; | 2661 "Manage audio focus across tabs to improve the audio mixing."; |
| 2662 | 2662 |
| 2663 const char kEnableDefaultMediaSessionDisabled[] = "Disabled"; | 2663 const char kEnableAudioFocusDisabled[] = "Disabled"; |
| 2664 | 2664 |
| 2665 const char kEnableDefaultMediaSessionEnabled[] = "Enabled"; | 2665 const char kEnableAudioFocusEnabled[] = "Enabled"; |
| 2666 | 2666 |
| 2667 const char kEnableDefaultMediaSessionEnabledDuckFlash[] = | 2667 const char kEnableAudioFocusEnabledDuckFlash[] = |
| 2668 "Enabled (Flash lowers volume when interrupted by other sound, " | 2668 "Enabled (Flash lowers volume when interrupted by other sound, " |
| 2669 "experimental)"; | 2669 "experimental)"; |
| 2670 | 2670 |
| 2671 #endif // !defined(OS_ANDROID) | 2671 #endif // !defined(OS_ANDROID) |
| 2672 | 2672 |
| 2673 #if defined(OS_WIN) | 2673 #if defined(OS_WIN) |
| 2674 | 2674 |
| 2675 const char kGdiTextPrinting[] = "GDI Text Printing"; | 2675 const char kGdiTextPrinting[] = "GDI Text Printing"; |
| 2676 | 2676 |
| 2677 const char kGdiTextPrintingDescription[] = | 2677 const char kGdiTextPrintingDescription[] = |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3133 "hard-reload."; | 3133 "hard-reload."; |
| 3134 | 3134 |
| 3135 const char kCaptureThumbnailOnLoadFinishedName[] = | 3135 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3136 "Capture page thumbnail on load finished"; | 3136 "Capture page thumbnail on load finished"; |
| 3137 | 3137 |
| 3138 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3138 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3139 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3139 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3140 "finishes, in addition to other times a thumbnail may be captured."; | 3140 "finishes, in addition to other times a thumbnail may be captured."; |
| 3141 | 3141 |
| 3142 } // namespace flag_descriptions | 3142 } // namespace flag_descriptions |
| OLD | NEW |