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

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

Issue 2230423002: Rename YouTube Flash embed experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix other typo and attempt at keeping it enabled Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // deprecated systems. 70 // deprecated systems.
71 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{ 71 const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{
72 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT}; 72 "LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT};
73 #endif 73 #endif
74 74
75 #if defined(ENABLE_EXTENSIONS) 75 #if defined(ENABLE_EXTENSIONS)
76 // Enabled or disabled the Material Design version of chrome://extensions. 76 // Enabled or disabled the Material Design version of chrome://extensions.
77 const base::Feature kMaterialDesignExtensions{ 77 const base::Feature kMaterialDesignExtensions{
78 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT}; 78 "MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT};
79 #endif 79 #endif
80 // Enables YouTube Flash videos to be overriden. 80
81 // Enables YouTube Flash videos to be overridden.
81 const base::Feature kOverrideYouTubeFlashEmbed{ 82 const base::Feature kOverrideYouTubeFlashEmbed{
82 "override-youtube-flash-emed", base::FEATURE_ENABLED_BY_DEFAULT}; 83 "OverrideYouTubeFlashEmbed", base::FEATURE_ENABLED_BY_DEFAULT};
83 84
84 // Enables or disables the Material Design version of chrome://history. 85 // Enables or disables the Material Design version of chrome://history.
85 const base::Feature kMaterialDesignHistory{ 86 const base::Feature kMaterialDesignHistory{
86 "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT}; 87 "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT};
87 88
88 // Enables or disables the Material Design version of chrome://settings. 89 // Enables or disables the Material Design version of chrome://settings.
89 // Also affects chrome://help. 90 // Also affects chrome://help.
90 const base::Feature kMaterialDesignSettings{ 91 const base::Feature kMaterialDesignSettings{
91 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT}; 92 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT};
92 93
(...skipping 29 matching lines...) Expand all
122 // Enables or disables the opt-in IME menu in the language settings page. 123 // Enables or disables the opt-in IME menu in the language settings page.
123 const base::Feature kOptInImeMenu{"OptInImeMenu", 124 const base::Feature kOptInImeMenu{"OptInImeMenu",
124 base::FEATURE_DISABLED_BY_DEFAULT}; 125 base::FEATURE_DISABLED_BY_DEFAULT};
125 126
126 // Enables or disables PIN quick unlock settings integration. 127 // Enables or disables PIN quick unlock settings integration.
127 const base::Feature kQuickUnlockPin{"QuickUnlockPin", 128 const base::Feature kQuickUnlockPin{"QuickUnlockPin",
128 base::FEATURE_DISABLED_BY_DEFAULT}; 129 base::FEATURE_DISABLED_BY_DEFAULT};
129 #endif // defined(OS_CHROMEOS) 130 #endif // defined(OS_CHROMEOS)
130 131
131 } // namespace features 132 } // namespace features
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698