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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeFeatureList.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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.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 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 package org.chromium.chrome.browser; 5 package org.chromium.chrome.browser;
6 6
7 import org.chromium.base.VisibleForTesting; 7 import org.chromium.base.VisibleForTesting;
8 import org.chromium.base.annotations.JNINamespace; 8 import org.chromium.base.annotations.JNINamespace;
9 import org.chromium.base.annotations.MainDex; 9 import org.chromium.base.annotations.MainDex;
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 // Alphabetical: 51 // Alphabetical:
52 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1"; 52 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1";
53 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName"; 53 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName";
54 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling"; 54 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling";
55 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI"; 55 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI";
56 public static final String CHROME_HOME = "ChromeHome"; 56 public static final String CHROME_HOME = "ChromeHome";
57 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation"; 57 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation";
58 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea rchSingleActions"; 58 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea rchSingleActions";
59 /** Whether we show an important sites dialog in the "Clear Browsing Data" f low. */ 59 /** Whether we show an important sites dialog in the "Clear Browsing Data" f low. */
60 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; 60 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD";
61 public static final String IMPROVED_A2HS = "ImprovedA2HS";
61 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort"; 62 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort";
62 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText"; 63 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText";
63 public static final String NTP_FOREIGN_SESSIONS_SUGGESTIONS = "NTPForeignSes sionsSuggestions"; 64 public static final String NTP_FOREIGN_SESSIONS_SUGGESTIONS = "NTPForeignSes sionsSuggestions";
64 public static final String NTP_SNIPPETS = "NTPSnippets"; 65 public static final String NTP_SNIPPETS = "NTPSnippets";
65 public static final String NTP_SNIPPETS_INCREASED_VISIBILITY = "NTPSnippetsI ncreasedVisibility"; 66 public static final String NTP_SNIPPETS_INCREASED_VISIBILITY = "NTPSnippetsI ncreasedVisibility";
66 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline" ; 67 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline" ;
67 public static final String NTP_SNIPPETS_OFFLINE_BADGE = "NTPOfflineBadge"; 68 public static final String NTP_SNIPPETS_OFFLINE_BADGE = "NTPOfflineBadge";
68 public static final String NTP_SUGGESTIONS_SECTION_DISMISSAL = "NTPSuggestio nsSectionDismissal"; 69 public static final String NTP_SUGGESTIONS_SECTION_DISMISSAL = "NTPSuggestio nsSectionDismissal";
69 public static final String SERVICE_WORKER_PAYMENT_APPS = "ServiceWorkerPayme ntApps"; 70 public static final String SERVICE_WORKER_PAYMENT_APPS = "ServiceWorkerPayme ntApps";
70 public static final String TAB_REPARENTING = "TabReparenting"; 71 public static final String TAB_REPARENTING = "TabReparenting";
71 public static final String VR_SHELL = "VrShell"; 72 public static final String VR_SHELL = "VrShell";
72 public static final String WEB_PAYMENTS = "WebPayments"; 73 public static final String WEB_PAYMENTS = "WebPayments";
73 public static final String WEB_PAYMENTS_MODIFIERS = "WebPaymentsModifiers"; 74 public static final String WEB_PAYMENTS_MODIFIERS = "WebPaymentsModifiers";
74 public static final String WEBAPKS = "WebApks";
75 75
76 private static native boolean nativeIsEnabled(String featureName); 76 private static native boolean nativeIsEnabled(String featureName);
77 } 77 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698