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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2847823005: Revert "Revert of 📺 Move fullscreen web content to a new Activity. (patchset #11 id:200001 of https… (Closed)
Patch Set: Created 3 years, 7 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 | « chrome/android/javatests/src/org/chromium/chrome/browser/FullscreenWebContentsActivityTest.java ('k') | 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 const base::Feature kCustomContextMenu{"CustomContextMenu", 136 const base::Feature kCustomContextMenu{"CustomContextMenu",
137 base::FEATURE_DISABLED_BY_DEFAULT}; 137 base::FEATURE_DISABLED_BY_DEFAULT};
138 138
139 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi", 139 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi",
140 base::FEATURE_DISABLED_BY_DEFAULT}; 140 base::FEATURE_DISABLED_BY_DEFAULT};
141 141
142 const base::Feature kDownloadAutoResumptionThrottling{ 142 const base::Feature kDownloadAutoResumptionThrottling{
143 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; 143 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT};
144 144
145 const base::Feature kFullscreenActivity{"FullscreenActivity", 145 const base::Feature kFullscreenActivity{"FullscreenActivity",
146 base::FEATURE_ENABLED_BY_DEFAULT}; 146 base::FEATURE_DISABLED_BY_DEFAULT};
147 147
148 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", 148 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
149 base::FEATURE_DISABLED_BY_DEFAULT}; 149 base::FEATURE_DISABLED_BY_DEFAULT};
150 150
151 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut 151 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut
152 // URL which opens Chrome in fullscreen. 152 // URL which opens Chrome in fullscreen.
153 const base::Feature kImprovedA2HS{"ImprovedA2HS", 153 const base::Feature kImprovedA2HS{"ImprovedA2HS",
154 base::FEATURE_DISABLED_BY_DEFAULT}; 154 base::FEATURE_DISABLED_BY_DEFAULT};
155 155
156 const base::Feature kSearchEnginePromoExistingDevice{ 156 const base::Feature kSearchEnginePromoExistingDevice{
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 278 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
279 jdefault_value); 279 jdefault_value);
280 } 280 }
281 281
282 bool RegisterChromeFeatureListJni(JNIEnv* env) { 282 bool RegisterChromeFeatureListJni(JNIEnv* env) {
283 return RegisterNativesImpl(env); 283 return RegisterNativesImpl(env);
284 } 284 }
285 285
286 } // namespace android 286 } // namespace android
287 } // namespace chrome 287 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/FullscreenWebContentsActivityTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698