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

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

Issue 773653002: [Views] Instrument unmasking prompt initial implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: butterfingers 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
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/card_unmask_prompt_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, 1680 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION,
1681 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid, 1681 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid,
1682 ENABLE_DISABLE_VALUE_TYPE( 1682 ENABLE_DISABLE_VALUE_TYPE(
1683 autofill::switches::kEnableSingleClickAutofill, 1683 autofill::switches::kEnableSingleClickAutofill,
1684 autofill::switches::kDisableSingleClickAutofill) 1684 autofill::switches::kDisableSingleClickAutofill)
1685 }, 1685 },
1686 { 1686 {
1687 "enable-wallet-card-import", 1687 "enable-wallet-card-import",
1688 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME, 1688 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME,
1689 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION, 1689 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION,
1690 kOsAndroid, 1690 kOsCrOS | kOsWin | kOsLinux | kOsAndroid,
1691 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport) 1691 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport)
1692 }, 1692 },
1693 { 1693 {
1694 "enable-permissions-bubbles", 1694 "enable-permissions-bubbles",
1695 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, 1695 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME,
1696 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, 1696 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION,
1697 kOsCrOS | kOsMac | kOsWin | kOsLinux, 1697 kOsCrOS | kOsMac | kOsWin | kOsLinux,
1698 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, 1698 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles,
1699 switches::kDisablePermissionsBubbles) 1699 switches::kDisablePermissionsBubbles)
1700 }, 1700 },
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2649 } 2649 }
2650 2650
2651 const Experiment* GetExperiments(size_t* count) { 2651 const Experiment* GetExperiments(size_t* count) {
2652 *count = num_experiments; 2652 *count = num_experiments;
2653 return experiments; 2653 return experiments;
2654 } 2654 }
2655 2655
2656 } // namespace testing 2656 } // namespace testing
2657 2657
2658 } // namespace about_flags 2658 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/card_unmask_prompt_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698