| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 extern const char kTouchSelectionStrategyDescription[]; | 503 extern const char kTouchSelectionStrategyDescription[]; |
| 504 | 504 |
| 505 // Description for the touch text selection strategy which always uses character | 505 // Description for the touch text selection strategy which always uses character |
| 506 // granularity. | 506 // granularity. |
| 507 extern const char kTouchSelectionStrategyCharacter[]; | 507 extern const char kTouchSelectionStrategyCharacter[]; |
| 508 | 508 |
| 509 // Description for the touch text selection strategy which is based on the | 509 // Description for the touch text selection strategy which is based on the |
| 510 // direction in which the handle is dragged. | 510 // direction in which the handle is dragged. |
| 511 extern const char kTouchSelectionStrategyDirection[]; | 511 extern const char kTouchSelectionStrategyDirection[]; |
| 512 | 512 |
| 513 // Name of the flag that requires a user gesture for vibrate. |
| 514 extern const char kVibrateRequiresUserGestureName[]; |
| 515 |
| 516 // Description of the flag that requires a user gesture for vibrate. |
| 517 extern const char kVibrateRequiresUserGestureDescription[]; |
| 518 |
| 513 // Title for the flag to use the Online Wallet sandbox servers (instead of | 519 // Title for the flag to use the Online Wallet sandbox servers (instead of |
| 514 // production). | 520 // production). |
| 515 extern const char kWalletServiceUseSandboxName[]; | 521 extern const char kWalletServiceUseSandboxName[]; |
| 516 | 522 |
| 517 // Description of the flag to use the Online Wallet sandbox servers. | 523 // Description of the flag to use the Online Wallet sandbox servers. |
| 518 extern const char kWalletServiceUseSandboxDescription[]; | 524 extern const char kWalletServiceUseSandboxDescription[]; |
| 519 | 525 |
| 520 // Title for the flag for history navigation from horizontal overscroll. | 526 // Title for the flag for history navigation from horizontal overscroll. |
| 521 extern const char kOverscrollHistoryNavigationName[]; | 527 extern const char kOverscrollHistoryNavigationName[]; |
| 522 | 528 |
| (...skipping 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3264 extern const char kEnableCopylessPasteName[]; | 3270 extern const char kEnableCopylessPasteName[]; |
| 3265 | 3271 |
| 3266 // Description of the flag that enables Copyless Paste. | 3272 // Description of the flag that enables Copyless Paste. |
| 3267 extern const char kEnableCopylessPasteDescription[]; | 3273 extern const char kEnableCopylessPasteDescription[]; |
| 3268 | 3274 |
| 3269 #endif // defined(OS_ANDROID) | 3275 #endif // defined(OS_ANDROID) |
| 3270 | 3276 |
| 3271 } // namespace flag_descriptions | 3277 } // namespace flag_descriptions |
| 3272 | 3278 |
| 3273 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3279 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |