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

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2830713003: [Media controls] Add rotate-to-fullscreen gesture behind flag (Closed)
Patch Set: Created 3 years, 8 months 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 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 2577 matching lines...) Expand 10 before | Expand all | Expand 10 after
2588 2588
2589 // Video fullscreen with orientation lock experiment strings. 2589 // Video fullscreen with orientation lock experiment strings.
2590 2590
2591 const char kVideoFullscreenOrientationLockName[] = 2591 const char kVideoFullscreenOrientationLockName[] =
2592 "Lock screen orientation when playing a video fullscreen."; 2592 "Lock screen orientation when playing a video fullscreen.";
2593 2593
2594 const char kVideoFullscreenOrientationLockDescription[] = 2594 const char kVideoFullscreenOrientationLockDescription[] =
2595 "Lock the screen orientation of the device to match video orientation " 2595 "Lock the screen orientation of the device to match video orientation "
2596 "when a video goes fullscreen. Only on phones."; 2596 "when a video goes fullscreen. Only on phones.";
2597 2597
2598 // Video rotate-to-fullscreen experiment strings.
2599
2600 const char kVideoRotateToFullscreenName[] =
2601 "Rotate-to-fullscreen gesture for videos.";
2602
2603 const char kVideoRotateToFullscreenDescription[] =
2604 "Enter/exit fullscreen when device is rotated to/from the orientation of "
2605 "the video. Only on phones.";
2606
2598 // Expensive background timer throttling flag 2607 // Expensive background timer throttling flag
2599 2608
2600 const char kExpensiveBackgroundTimerThrottlingName[] = 2609 const char kExpensiveBackgroundTimerThrottlingName[] =
2601 "Throttle expensive background timers"; 2610 "Throttle expensive background timers";
2602 2611
2603 const char kExpensiveBackgroundTimerThrottlingDescription[] = 2612 const char kExpensiveBackgroundTimerThrottlingDescription[] =
2604 "Enables intervention to limit CPU usage of background timers to 1%."; 2613 "Enables intervention to limit CPU usage of background timers to 1%.";
2605 2614
2606 // Enable default MediaSession flag 2615 // Enable default MediaSession flag
2607 2616
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
3007 const char kEnableCopylessPasteDescription[] = 3016 const char kEnableCopylessPasteDescription[] =
3008 "Provide suggestions for text input, based on your recent context. For " 3017 "Provide suggestions for text input, based on your recent context. For "
3009 "example, if you looked at a restaurant website and switched to the Maps " 3018 "example, if you looked at a restaurant website and switched to the Maps "
3010 "app, the keyboard would offer the name of that restaurant as a suggestion " 3019 "app, the keyboard would offer the name of that restaurant as a suggestion "
3011 "to enter into the search bar. The data is indexed locally, and never sent " 3020 "to enter into the search bar. The data is indexed locally, and never sent "
3012 "to the server. It's disabled in incognito mode."; 3021 "to the server. It's disabled in incognito mode.";
3013 3022
3014 #endif // defined(OS_ANDROID) 3023 #endif // defined(OS_ANDROID)
3015 3024
3016 } // namespace flag_descriptions 3025 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698