Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2778693004: Remove navigator.vibrate without user gesture. (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 2756 matching lines...) Expand 10 before | Expand all | Expand 10 after
3279 extern const char kEnableCopylessPasteName[]; 3285 extern const char kEnableCopylessPasteName[];
3280 3286
3281 // Description of the flag that enables Copyless Paste. 3287 // Description of the flag that enables Copyless Paste.
3282 extern const char kEnableCopylessPasteDescription[]; 3288 extern const char kEnableCopylessPasteDescription[];
3283 3289
3284 #endif // defined(OS_ANDROID) 3290 #endif // defined(OS_ANDROID)
3285 3291
3286 } // namespace flag_descriptions 3292 } // namespace flag_descriptions
3287 3293
3288 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3294 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698