| 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 2669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2680 | 2680 |
| 2681 // Media Remoting chrome://flags strings | 2681 // Media Remoting chrome://flags strings |
| 2682 | 2682 |
| 2683 const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring"; | 2683 const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring"; |
| 2684 | 2684 |
| 2685 const char kMediaRemotingDescription[] = | 2685 const char kMediaRemotingDescription[] = |
| 2686 "When Casting a tab to a remote device, enabling this turns on an " | 2686 "When Casting a tab to a remote device, enabling this turns on an " |
| 2687 "optimization that forwards the content bitstream directly to the " | 2687 "optimization that forwards the content bitstream directly to the " |
| 2688 "remote device when a video is fullscreened."; | 2688 "remote device when a video is fullscreened."; |
| 2689 | 2689 |
| 2690 const char kMediaRemotingEncryptedName[] = | |
| 2691 "Media Remoting during Cast Tab Mirroring: Encrypted content too"; | |
| 2692 | |
| 2693 const char kMediaRemotingEncryptedDescription[] = | |
| 2694 "When Media Remoting is enabled, this flag must be enabled to allow the " | |
| 2695 "remoting of encrypted content. When disabled, only non-encrypted " | |
| 2696 "content can be remoted."; | |
| 2697 | |
| 2698 // Chrome OS component updates chrome://flags strings | 2690 // Chrome OS component updates chrome://flags strings |
| 2699 | 2691 |
| 2700 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; | 2692 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; |
| 2701 | 2693 |
| 2702 const char kCrosCompUpdatesDescription[] = | 2694 const char kCrosCompUpdatesDescription[] = |
| 2703 "Enable Flash component updates for Chrome OS."; | 2695 "Enable Flash component updates for Chrome OS."; |
| 2704 | 2696 |
| 2705 // Native Android History chrome://flags strings | 2697 // Native Android History chrome://flags strings |
| 2706 | 2698 |
| 2707 #if defined(OS_ANDROID) | 2699 #if defined(OS_ANDROID) |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3041 const char kEnableOmniboxClipboardProviderName[] = | 3033 const char kEnableOmniboxClipboardProviderName[] = |
| 3042 "Omnibox clipboard URL suggestions"; | 3034 "Omnibox clipboard URL suggestions"; |
| 3043 | 3035 |
| 3044 const char kEnableOmniboxClipboardProviderDescription[] = | 3036 const char kEnableOmniboxClipboardProviderDescription[] = |
| 3045 "Provide a suggestion of the URL stored in the clipboard (if any) upon " | 3037 "Provide a suggestion of the URL stored in the clipboard (if any) upon " |
| 3046 "focus in the omnibox."; | 3038 "focus in the omnibox."; |
| 3047 | 3039 |
| 3048 #endif // defined(OS_ANDROID) | 3040 #endif // defined(OS_ANDROID) |
| 3049 | 3041 |
| 3050 } // namespace flag_descriptions | 3042 } // namespace flag_descriptions |
| OLD | NEW |