| 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 3018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3029 | 3029 |
| 3030 #endif // defined(OS_ANDROID) | 3030 #endif // defined(OS_ANDROID) |
| 3031 | 3031 |
| 3032 const char kEnableIdleTimeSpellCheckingName[] = | 3032 const char kEnableIdleTimeSpellCheckingName[] = |
| 3033 "Enable idle time spell checker"; | 3033 "Enable idle time spell checker"; |
| 3034 | 3034 |
| 3035 const char kEnableIdleTimeSpellCheckingDescription[] = | 3035 const char kEnableIdleTimeSpellCheckingDescription[] = |
| 3036 "Make spell-checking code run only when the browser is idle, so that input " | 3036 "Make spell-checking code run only when the browser is idle, so that input " |
| 3037 "latency is reduced, especially when editing long articles, emails, etc."; | 3037 "latency is reduced, especially when editing long articles, emails, etc."; |
| 3038 | 3038 |
| 3039 #if defined(OS_ANDROID) |
| 3040 |
| 3041 const char kEnableOmniboxClipboardProviderName[] = |
| 3042 "Omnibox clipboard URL suggestions"; |
| 3043 |
| 3044 const char kEnableOmniboxClipboardProviderDescription[] = |
| 3045 "Provide a suggestion of the URL stored in the clipboard (if any) upon " |
| 3046 "focus in the omnibox."; |
| 3047 |
| 3048 #endif // defined(OS_ANDROID) |
| 3049 |
| 3039 } // namespace flag_descriptions | 3050 } // namespace flag_descriptions |
| OLD | NEW |