| 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 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; | 9 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; |
| 10 const char kAccelerated2dCanvasDescription[] = | 10 const char kAccelerated2dCanvasDescription[] = |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 | 1047 |
| 1048 const char kShowAutofillSignaturesName[] = "Show autofill signatures."; | 1048 const char kShowAutofillSignaturesName[] = "Show autofill signatures."; |
| 1049 const char kShowAutofillSignaturesDescription[] = | 1049 const char kShowAutofillSignaturesDescription[] = |
| 1050 "Annotates web forms with Autofill signatures as HTML attributes."; | 1050 "Annotates web forms with Autofill signatures as HTML attributes."; |
| 1051 | 1051 |
| 1052 const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions"; | 1052 const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions"; |
| 1053 const char kShowAutofillTypePredictionsDescription[] = | 1053 const char kShowAutofillTypePredictionsDescription[] = |
| 1054 "Annotates web forms with Autofill field type predictions as placeholder " | 1054 "Annotates web forms with Autofill field type predictions as placeholder " |
| 1055 "text."; | 1055 "text."; |
| 1056 | 1056 |
| 1057 const char kManualFallbackForPasswordSavingName[] = |
| 1058 "Enable manual fallback for password saving"; |
| 1059 |
| 1060 const char kManualFallbackForPasswordSavingDescription[] = |
| 1061 "The omnibox icon with anchored save/update prompt appears once a user " |
| 1062 "starts typing in a password field"; |
| 1063 |
| 1057 const char kShowOverdrawFeedbackName[] = "Show overdraw feedback"; | 1064 const char kShowOverdrawFeedbackName[] = "Show overdraw feedback"; |
| 1058 const char kShowOverdrawFeedbackDescription[] = | 1065 const char kShowOverdrawFeedbackDescription[] = |
| 1059 "Visualize overdraw by color-coding elements based on if they have other " | 1066 "Visualize overdraw by color-coding elements based on if they have other " |
| 1060 "elements drawn underneath."; | 1067 "elements drawn underneath."; |
| 1061 | 1068 |
| 1062 const char kShowSavedCopyName[] = "Show Saved Copy Button"; | 1069 const char kShowSavedCopyName[] = "Show Saved Copy Button"; |
| 1063 const char kShowSavedCopyDescription[] = | 1070 const char kShowSavedCopyDescription[] = |
| 1064 "When a page fails to load, if a stale copy of the page exists in the " | 1071 "When a page fails to load, if a stale copy of the page exists in the " |
| 1065 "browser cache, a button will be presented to allow the user to load that " | 1072 "browser cache, a button will be presented to allow the user to load that " |
| 1066 "stale copy. The primary enabling choice puts the button in the most " | 1073 "stale copy. The primary enabling choice puts the button in the most " |
| (...skipping 1663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2730 "Use Chrome OS MIDI Service for Web MIDI and allow ARC to support Android " | 2737 "Use Chrome OS MIDI Service for Web MIDI and allow ARC to support Android " |
| 2731 "MIDI."; | 2738 "MIDI."; |
| 2732 | 2739 |
| 2733 const char kMultideviceName[] = "Enable multidevice features"; | 2740 const char kMultideviceName[] = "Enable multidevice features"; |
| 2734 const char kMultideviceDescription[] = | 2741 const char kMultideviceDescription[] = |
| 2735 "Enables UI for controlling multidevice features."; | 2742 "Enables UI for controlling multidevice features."; |
| 2736 | 2743 |
| 2737 #endif // defined(OS_CHROMEOS) | 2744 #endif // defined(OS_CHROMEOS) |
| 2738 | 2745 |
| 2739 } // namespace flag_descriptions | 2746 } // namespace flag_descriptions |
| OLD | NEW |