| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 extern const char kTouchSelectionStrategyDescription[]; | 497 extern const char kTouchSelectionStrategyDescription[]; |
| 498 | 498 |
| 499 // Description for the touch text selection strategy which always uses character | 499 // Description for the touch text selection strategy which always uses character |
| 500 // granularity. | 500 // granularity. |
| 501 extern const char kTouchSelectionStrategyCharacter[]; | 501 extern const char kTouchSelectionStrategyCharacter[]; |
| 502 | 502 |
| 503 // Description for the touch text selection strategy which is based on the | 503 // Description for the touch text selection strategy which is based on the |
| 504 // direction in which the handle is dragged. | 504 // direction in which the handle is dragged. |
| 505 extern const char kTouchSelectionStrategyDirection[]; | 505 extern const char kTouchSelectionStrategyDirection[]; |
| 506 | 506 |
| 507 // Name of the flag that requires a user gesture for vibrate. |
| 508 extern const char kVibrateRequiresUserGestureName[]; |
| 509 |
| 510 // Description of the flag that requires a user gesture for vibrate. |
| 511 extern const char kVibrateRequiresUserGestureDescription[]; |
| 512 |
| 507 // Title for the flag to use the Online Wallet sandbox servers (instead of | 513 // Title for the flag to use the Online Wallet sandbox servers (instead of |
| 508 // production). | 514 // production). |
| 509 extern const char kWalletServiceUseSandboxName[]; | 515 extern const char kWalletServiceUseSandboxName[]; |
| 510 | 516 |
| 511 // Description of the flag to use the Online Wallet sandbox servers. | 517 // Description of the flag to use the Online Wallet sandbox servers. |
| 512 extern const char kWalletServiceUseSandboxDescription[]; | 518 extern const char kWalletServiceUseSandboxDescription[]; |
| 513 | 519 |
| 514 // Title for the flag for history navigation from horizontal overscroll. | 520 // Title for the flag for history navigation from horizontal overscroll. |
| 515 extern const char kOverscrollHistoryNavigationName[]; | 521 extern const char kOverscrollHistoryNavigationName[]; |
| 516 | 522 |
| (...skipping 2712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3229 extern const char kEnableCopylessPasteName[]; | 3235 extern const char kEnableCopylessPasteName[]; |
| 3230 | 3236 |
| 3231 // Description of the flag that enables Copyless Paste. | 3237 // Description of the flag that enables Copyless Paste. |
| 3232 extern const char kEnableCopylessPasteDescription[]; | 3238 extern const char kEnableCopylessPasteDescription[]; |
| 3233 | 3239 |
| 3234 #endif // defined(OS_ANDROID) | 3240 #endif // defined(OS_ANDROID) |
| 3235 | 3241 |
| 3236 } // namespace flag_descriptions | 3242 } // namespace flag_descriptions |
| 3237 | 3243 |
| 3238 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3244 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |