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

Side by Side Diff: chrome/common/chrome_features.cc

Issue 2253953003: Disable AutoImport: experiment and histogram for analysis. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 4 years, 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/common/chrome_features.h" 5 #include "chrome/common/chrome_features.h"
6 6
7 namespace features { 7 namespace features {
8 8
9 // All features in alphabetical order. 9 // All features in alphabetical order.
10 10
(...skipping 30 matching lines...) Expand all
41 41
42 // Experiment to disable small cross-origin content. (http://crbug.com/608886) 42 // Experiment to disable small cross-origin content. (http://crbug.com/608886)
43 const base::Feature kBlockSmallContent{"BlockSmallPluginContent", 43 const base::Feature kBlockSmallContent{"BlockSmallPluginContent",
44 base::FEATURE_DISABLED_BY_DEFAULT}; 44 base::FEATURE_DISABLED_BY_DEFAULT};
45 45
46 // Fixes for browser hang bugs are deployed in a field trial in order to measure 46 // Fixes for browser hang bugs are deployed in a field trial in order to measure
47 // their impact. See crbug.com/478209. 47 // their impact. See crbug.com/478209.
48 const base::Feature kBrowserHangFixesExperiment{ 48 const base::Feature kBrowserHangFixesExperiment{
49 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT}; 49 "BrowserHangFixesExperiment", base::FEATURE_DISABLED_BY_DEFAULT};
50 50
51 #if defined(OS_WIN)
52 // Disables the AutoImport feature on first run. See crbug.com/555550
53 const base::Feature kDisableFirstRunAutoImportWin{
54 "DisableFirstRunAutoImport", base::FEATURE_DISABLED_BY_DEFAULT};
55 #endif
56
51 // Experiment to display a toggle allowing users to opt-out of persisting a 57 // Experiment to display a toggle allowing users to opt-out of persisting a
52 // Grant or Deny decision in a permission prompt. 58 // Grant or Deny decision in a permission prompt.
53 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{ 59 const base::Feature kDisplayPersistenceToggleInPermissionPrompts{
54 "DisplayPersistenceToggleInPermissionPrompts", 60 "DisplayPersistenceToggleInPermissionPrompts",
55 base::FEATURE_DISABLED_BY_DEFAULT}; 61 base::FEATURE_DISABLED_BY_DEFAULT};
56 62
57 // Enables Expect CT reporting, which sends reports for opted-in sites 63 // Enables Expect CT reporting, which sends reports for opted-in sites
58 // that don't serve sufficient Certificate Transparency information. 64 // that don't serve sufficient Certificate Transparency information.
59 const base::Feature kExpectCTReporting{"ExpectCTReporting", 65 const base::Feature kExpectCTReporting{"ExpectCTReporting",
60 base::FEATURE_DISABLED_BY_DEFAULT}; 66 base::FEATURE_DISABLED_BY_DEFAULT};
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 // Enables or disables the opt-in IME menu in the language settings page. 140 // Enables or disables the opt-in IME menu in the language settings page.
135 const base::Feature kOptInImeMenu{"OptInImeMenu", 141 const base::Feature kOptInImeMenu{"OptInImeMenu",
136 base::FEATURE_DISABLED_BY_DEFAULT}; 142 base::FEATURE_DISABLED_BY_DEFAULT};
137 143
138 // Enables or disables PIN quick unlock settings integration. 144 // Enables or disables PIN quick unlock settings integration.
139 const base::Feature kQuickUnlockPin{"QuickUnlockPin", 145 const base::Feature kQuickUnlockPin{"QuickUnlockPin",
140 base::FEATURE_DISABLED_BY_DEFAULT}; 146 base::FEATURE_DISABLED_BY_DEFAULT};
141 #endif // defined(OS_CHROMEOS) 147 #endif // defined(OS_CHROMEOS)
142 148
143 } // namespace features 149 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698