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

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

Issue 756333003: Prompt for unmasking Wallet credit card on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix AW Created 6 years 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1661 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 { 1672 {
1673 "enable-single-click-autofill", 1673 "enable-single-click-autofill",
1674 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, 1674 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME,
1675 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, 1675 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION,
1676 kOsCrOS | kOsMac | kOsWin | kOsLinux, 1676 kOsCrOS | kOsMac | kOsWin | kOsLinux,
1677 ENABLE_DISABLE_VALUE_TYPE( 1677 ENABLE_DISABLE_VALUE_TYPE(
1678 autofill::switches::kEnableSingleClickAutofill, 1678 autofill::switches::kEnableSingleClickAutofill,
1679 autofill::switches::kDisableSingleClickAutofill) 1679 autofill::switches::kDisableSingleClickAutofill)
1680 }, 1680 },
1681 { 1681 {
1682 "enable-wallet-card-import",
1683 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME,
1684 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION,
1685 kOsAndroid,
1686 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport)
1687 },
1688 {
1682 "enable-permissions-bubbles", 1689 "enable-permissions-bubbles",
1683 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, 1690 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME,
1684 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, 1691 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION,
1685 kOsCrOS | kOsMac | kOsWin | kOsLinux, 1692 kOsCrOS | kOsMac | kOsWin | kOsLinux,
1686 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, 1693 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles,
1687 switches::kDisablePermissionsBubbles) 1694 switches::kDisablePermissionsBubbles)
1688 }, 1695 },
1689 { 1696 {
1690 "enable-session-crashed-bubble", 1697 "enable-session-crashed-bubble",
1691 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, 1698 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME,
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
2622 } 2629 }
2623 2630
2624 const Experiment* GetExperiments(size_t* count) { 2631 const Experiment* GetExperiments(size_t* count) {
2625 *count = num_experiments; 2632 *count = num_experiments;
2626 return experiments; 2633 return experiments;
2627 } 2634 }
2628 2635
2629 } // namespace testing 2636 } // namespace testing
2630 2637
2631 } // namespace about_flags 2638 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698