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

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

Issue 2009423002: Upstream: Version WebAPK runtime library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkVersionManager.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 * Enables "Add to Home screen" to mint a WebApk. 240 * Enables "Add to Home screen" to mint a WebApk.
241 */ 241 */
242 public static final String ENABLE_WEBAPK = "enable-webapk"; 242 public static final String ENABLE_WEBAPK = "enable-webapk";
243 243
244 /** 244 /**
245 * Enables theme colors in the tab switcher. 245 * Enables theme colors in the tab switcher.
246 */ 246 */
247 public static final String ENABLE_TAB_SWITCHER_THEME_COLORS = 247 public static final String ENABLE_TAB_SWITCHER_THEME_COLORS =
248 "enable-tab-switcher-theme-colors"; 248 "enable-tab-switcher-theme-colors";
249 249
250 /**
251 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st arted.
252 */
253 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP =
254 "always-extract-webapk-dex-on-startup";
255
250 // Prevent instantiation. 256 // Prevent instantiation.
251 private ChromeSwitches() {} 257 private ChromeSwitches() {}
252 } 258 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkVersionManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698