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

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

Issue 2807663002: 📺 Move fullscreen web content to a new Activity. (Closed)
Patch Set: Fix test. 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 const base::Feature kCustomContextMenu{"CustomContextMenu", 137 const base::Feature kCustomContextMenu{"CustomContextMenu",
138 base::FEATURE_DISABLED_BY_DEFAULT}; 138 base::FEATURE_DISABLED_BY_DEFAULT};
139 139
140 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi", 140 const base::Feature kCustomFeedbackUi{"CustomFeedbackUi",
141 base::FEATURE_DISABLED_BY_DEFAULT}; 141 base::FEATURE_DISABLED_BY_DEFAULT};
142 142
143 const base::Feature kDownloadAutoResumptionThrottling{ 143 const base::Feature kDownloadAutoResumptionThrottling{
144 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; 144 "DownloadAutoResumptionThrottling", base::FEATURE_ENABLED_BY_DEFAULT};
145 145
146 const base::Feature kFullscreenActivity{"FullscreenActivity", 146 const base::Feature kFullscreenActivity{"FullscreenActivity",
147 base::FEATURE_ENABLED_BY_DEFAULT}; 147 base::FEATURE_DISABLED_BY_DEFAULT};
148 148
149 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", 149 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
150 base::FEATURE_DISABLED_BY_DEFAULT}; 150 base::FEATURE_DISABLED_BY_DEFAULT};
151 151
152 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut 152 // Makes "Add to Home screen" in the app menu generate an APK for the shortcut
153 // URL which opens Chrome in fullscreen. 153 // URL which opens Chrome in fullscreen.
154 const base::Feature kImprovedA2HS{"ImprovedA2HS", 154 const base::Feature kImprovedA2HS{"ImprovedA2HS",
155 base::FEATURE_DISABLED_BY_DEFAULT}; 155 base::FEATURE_DISABLED_BY_DEFAULT};
156 156
157 const base::Feature kNewPhotoPicker{"NewPhotoPicker", 157 const base::Feature kNewPhotoPicker{"NewPhotoPicker",
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 273 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
274 jdefault_value); 274 jdefault_value);
275 } 275 }
276 276
277 bool RegisterChromeFeatureListJni(JNIEnv* env) { 277 bool RegisterChromeFeatureListJni(JNIEnv* env) {
278 return RegisterNativesImpl(env); 278 return RegisterNativesImpl(env);
279 } 279 }
280 280
281 } // namespace android 281 } // namespace android
282 } // namespace chrome 282 } // 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