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

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

Issue 2836443002: No rate limit for canMakePayment() on localhost and file://. (Closed)
Patch Set: Comments 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 #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 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 2540 matching lines...) Expand 10 before | Expand all | Expand 10 after
2551 2551
2552 const char kEnableWebPaymentsSingleAppUiSkipDescription[] = 2552 const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
2553 "Enable Web Payments to skip showing its UI if the developer specifies " 2553 "Enable Web Payments to skip showing its UI if the developer specifies "
2554 "a single app."; 2554 "a single app.";
2555 2555
2556 const char kAndroidPaymentAppsName[] = "Android payment apps"; 2556 const char kAndroidPaymentAppsName[] = "Android payment apps";
2557 2557
2558 const char kAndroidPaymentAppsDescription[] = 2558 const char kAndroidPaymentAppsDescription[] =
2559 "Enable third party Android apps to integrate as payment apps"; 2559 "Enable third party Android apps to integrate as payment apps";
2560 2560
2561 const char kAndroidPaymentAppsFilterTitle[] = "Android payment apps filter";
2562
2563 const char kAndroidPaymentAppsFilterDescription[] =
2564 "Enable filtering out third party Android apps that can not be shown in "
2565 "settings";
2566
2567 #endif // defined(OS_ANDROID) 2561 #endif // defined(OS_ANDROID)
2568 2562
2569 const char kFeaturePolicyName[] = "Feature Policy"; 2563 const char kFeaturePolicyName[] = "Feature Policy";
2570 2564
2571 const char kFeaturePolicyDescription[] = 2565 const char kFeaturePolicyDescription[] =
2572 "Enables granting and removing access to features through the " 2566 "Enables granting and removing access to features through the "
2573 "Feature-Policy HTTP header."; 2567 "Feature-Policy HTTP header.";
2574 2568
2575 // Audio rendering mixing experiment strings. 2569 // Audio rendering mixing experiment strings.
2576 2570
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
3027 #endif // defined(OS_ANDROID) 3021 #endif // defined(OS_ANDROID)
3028 3022
3029 const char kEnableIdleTimeSpellCheckingName[] = 3023 const char kEnableIdleTimeSpellCheckingName[] =
3030 "Enable idle time spell checker"; 3024 "Enable idle time spell checker";
3031 3025
3032 const char kEnableIdleTimeSpellCheckingDescription[] = 3026 const char kEnableIdleTimeSpellCheckingDescription[] =
3033 "Make spell-checking code run only when the browser is idle, so that input " 3027 "Make spell-checking code run only when the browser is idle, so that input "
3034 "latency is reduced, especially when editing long articles, emails, etc."; 3028 "latency is reduced, especially when editing long articles, emails, etc.";
3035 3029
3036 } // namespace flag_descriptions 3030 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698