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 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3258 extern const char kEnableCopylessPasteName[]; | 3264 extern const char kEnableCopylessPasteName[]; |
3259 | 3265 |
3260 // Description of the flag that enables Copyless Paste. | 3266 // Description of the flag that enables Copyless Paste. |
3261 extern const char kEnableCopylessPasteDescription[]; | 3267 extern const char kEnableCopylessPasteDescription[]; |
3262 | 3268 |
3263 #endif // defined(OS_ANDROID) | 3269 #endif // defined(OS_ANDROID) |
3264 | 3270 |
3265 } // namespace flag_descriptions | 3271 } // namespace flag_descriptions |
3266 | 3272 |
3267 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3273 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |