| 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 2693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2704 | 2704 |
| 2705 // Media Remoting chrome://flags strings | 2705 // Media Remoting chrome://flags strings |
| 2706 | 2706 |
| 2707 const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring"; | 2707 const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring"; |
| 2708 | 2708 |
| 2709 const char kMediaRemotingDescription[] = | 2709 const char kMediaRemotingDescription[] = |
| 2710 "When Casting a tab to a remote device, enabling this turns on an " | 2710 "When Casting a tab to a remote device, enabling this turns on an " |
| 2711 "optimization that forwards the content bitstream directly to the " | 2711 "optimization that forwards the content bitstream directly to the " |
| 2712 "remote device when a video is fullscreened."; | 2712 "remote device when a video is fullscreened."; |
| 2713 | 2713 |
| 2714 // Chrome OS component updates chrome://flags strings | |
| 2715 | |
| 2716 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; | |
| 2717 | |
| 2718 const char kCrosCompUpdatesDescription[] = | |
| 2719 "Enable Flash component updates for Chrome OS."; | |
| 2720 | |
| 2721 // Play Services LSD permission prompt chrome://flags strings | 2714 // Play Services LSD permission prompt chrome://flags strings |
| 2722 | 2715 |
| 2723 #if defined(OS_ANDROID) | 2716 #if defined(OS_ANDROID) |
| 2724 | 2717 |
| 2725 const char kLsdPermissionPromptName[] = | 2718 const char kLsdPermissionPromptName[] = |
| 2726 "Location Settings Dialog Permission Prompt"; | 2719 "Location Settings Dialog Permission Prompt"; |
| 2727 | 2720 |
| 2728 const char kLsdPermissionPromptDescription[] = | 2721 const char kLsdPermissionPromptDescription[] = |
| 2729 "Whether to use the Google Play Services Location Settings Dialog " | 2722 "Whether to use the Google Play Services Location Settings Dialog " |
| 2730 "permission dialog."; | 2723 "permission dialog."; |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3152 | 3145 |
| 3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 3146 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 3154 | 3147 |
| 3155 #if defined(OS_MACOSX) | 3148 #if defined(OS_MACOSX) |
| 3156 extern const char kMacRTLName[] = "Enable RTL"; | 3149 extern const char kMacRTLName[] = "Enable RTL"; |
| 3157 extern const char kMacRTLDescription[] = | 3150 extern const char kMacRTLDescription[] = |
| 3158 "Mirrors the UI for RTL language users"; | 3151 "Mirrors the UI for RTL language users"; |
| 3159 #endif | 3152 #endif |
| 3160 | 3153 |
| 3161 } // namespace flag_descriptions | 3154 } // namespace flag_descriptions |
| OLD | NEW |