| 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 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1746 "puts it secondary to the reload button."; | 1746 "puts it secondary to the reload button."; |
| 1747 | 1747 |
| 1748 const char kEnableShowSavedCopyPrimary[] = "Enable: Primary"; | 1748 const char kEnableShowSavedCopyPrimary[] = "Enable: Primary"; |
| 1749 | 1749 |
| 1750 const char kEnableShowSavedCopySecondary[] = "Enable: Secondary"; | 1750 const char kEnableShowSavedCopySecondary[] = "Enable: Secondary"; |
| 1751 | 1751 |
| 1752 const char kDisableShowSavedCopy[] = "Disable"; | 1752 const char kDisableShowSavedCopy[] = "Disable"; |
| 1753 | 1753 |
| 1754 #if defined(OS_CHROMEOS) | 1754 #if defined(OS_CHROMEOS) |
| 1755 | 1755 |
| 1756 const char kSmartVirtualKeyboardName[] = | |
| 1757 "Smart Deployment of the Virtual Keyboard"; | |
| 1758 | |
| 1759 const char kSmartVirtualKeyboardDescription[] = | |
| 1760 "Enable/Disable smart deployment of the virtual keyboard."; | |
| 1761 | |
| 1762 const char kVirtualKeyboardName[] = "Virtual Keyboard"; | 1756 const char kVirtualKeyboardName[] = "Virtual Keyboard"; |
| 1763 | 1757 |
| 1764 const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support."; | 1758 const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support."; |
| 1765 | 1759 |
| 1766 const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll"; | 1760 const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll"; |
| 1767 | 1761 |
| 1768 const char kVirtualKeyboardOverscrollDescription[] = | 1762 const char kVirtualKeyboardOverscrollDescription[] = |
| 1769 "Enables virtual keyboard overscroll support."; | 1763 "Enables virtual keyboard overscroll support."; |
| 1770 | 1764 |
| 1771 const char kInputViewName[] = "Input views"; | 1765 const char kInputViewName[] = "Input views"; |
| (...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3152 | 3146 |
| 3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 3147 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 3154 | 3148 |
| 3155 #if defined(OS_MACOSX) | 3149 #if defined(OS_MACOSX) |
| 3156 extern const char kMacRTLName[] = "Enable RTL"; | 3150 extern const char kMacRTLName[] = "Enable RTL"; |
| 3157 extern const char kMacRTLDescription[] = | 3151 extern const char kMacRTLDescription[] = |
| 3158 "Mirrors the UI for RTL language users"; | 3152 "Mirrors the UI for RTL language users"; |
| 3159 #endif | 3153 #endif |
| 3160 | 3154 |
| 3161 } // namespace flag_descriptions | 3155 } // namespace flag_descriptions |
| OLD | NEW |