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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java

Issue 2544973002: Make chrome://flags control whether the WebAPK feature is on (Closed)
Patch Set: Merge branch 'master' into feature_on_default Created 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 package org.chromium.chrome.browser; 5 package org.chromium.chrome.browser;
6 6
7 /** 7 /**
8 * Contains all of the command line switches that are specific to the chrome/ 8 * Contains all of the command line switches that are specific to the chrome/
9 * portion of Chromium on Android. 9 * portion of Chromium on Android.
10 */ 10 */
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 189
190 public static final String DISABLE_APP_LINK = "disable-app-link"; 190 public static final String DISABLE_APP_LINK = "disable-app-link";
191 public static final String ENABLE_APP_LINK = "enable-app-link"; 191 public static final String ENABLE_APP_LINK = "enable-app-link";
192 192
193 /** 193 /**
194 * Set the partner-defined homepage URL, for testing. 194 * Set the partner-defined homepage URL, for testing.
195 */ 195 */
196 public static final String PARTNER_HOMEPAGE_FOR_TESTING = "partner-homepage- for-testing"; 196 public static final String PARTNER_HOMEPAGE_FOR_TESTING = "partner-homepage- for-testing";
197 197
198 /** 198 /**
199 * Enables "Add to Home screen" to mint a WebApk.
200 */
201 public static final String ENABLE_WEBAPK = "enable-improved-a2hs";
202
203 /**
204 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st arted. 199 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st arted.
205 */ 200 */
206 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = 201 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP =
207 "always-extract-webapk-dex-on-startup"; 202 "always-extract-webapk-dex-on-startup";
208 203
209 /** 204 /**
210 * Forces a check for whether the WebAPK's Web Manifest has changed each tim e that a WebAPK is 205 * Forces a check for whether the WebAPK's Web Manifest has changed each tim e that a WebAPK is
211 * launched. 206 * launched.
212 */ 207 */
213 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = 208 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP =
214 "check-for-web-manifest-update-on-startup"; 209 "check-for-web-manifest-update-on-startup";
215 210
216 /** Enable Vr Shell development environment. */ 211 /** Enable Vr Shell development environment. */
217 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; 212 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev";
218 213
219 // Prevent instantiation. 214 // Prevent instantiation.
220 private ChromeSwitches() {} 215 private ChromeSwitches() {}
221 } 216 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698