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

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

Issue 2970003003: customtabs: Extract a redirect endpoint, and maybe connect to it. (Closed)
Patch Set: Typo. Created 3 years, 5 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/WarmupManager.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 import org.chromium.base.library_loader.LibraryLoader; 10 import org.chromium.base.library_loader.LibraryLoader;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 } 147 }
148 148
149 // Alphabetical: 149 // Alphabetical:
150 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1"; 150 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1";
151 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati onV2"; 151 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati onV2";
152 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps"; 152 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps";
153 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName"; 153 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName";
154 public static final String CCT_BACKGROUND_TAB = "CCTBackgroundTab"; 154 public static final String CCT_BACKGROUND_TAB = "CCTBackgroundTab";
155 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling"; 155 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling";
156 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI"; 156 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI";
157 public static final String CCT_REDIRECT_PRECONNECT = "CCTRedirectPreconnect" ;
157 public static final String CHROME_HOME = "ChromeHome"; 158 public static final String CHROME_HOME = "ChromeHome";
158 public static final String CHROME_HOME_EXPAND_BUTTON = "ChromeHomeExpandButt on"; 159 public static final String CHROME_HOME_EXPAND_BUTTON = "ChromeHomeExpandButt on";
159 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation"; 160 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation";
160 public static final String CONTENT_SUGGESTIONS_FAVICONS_FROM_NEW_SERVER = 161 public static final String CONTENT_SUGGESTIONS_FAVICONS_FROM_NEW_SERVER =
161 "ContentSuggestionsFaviconsFromNewServer"; 162 "ContentSuggestionsFaviconsFromNewServer";
162 public static final String CONTENT_SUGGESTIONS_NOTIFICATIONS = 163 public static final String CONTENT_SUGGESTIONS_NOTIFICATIONS =
163 "ContentSuggestionsNotifications"; 164 "ContentSuggestionsNotifications";
164 public static final String CONTENT_SUGGESTIONS_LARGE_THUMBNAIL = 165 public static final String CONTENT_SUGGESTIONS_LARGE_THUMBNAIL =
165 "ContentSuggestionsLargeThumbnail"; 166 "ContentSuggestionsLargeThumbnail";
166 public static final String CONTENT_SUGGESTIONS_SETTINGS = "ContentSuggestion sSettings"; 167 public static final String CONTENT_SUGGESTIONS_SETTINGS = "ContentSuggestion sSettings";
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 private static native boolean nativeIsEnabled(String featureName); 216 private static native boolean nativeIsEnabled(String featureName);
216 private static native String nativeGetFieldTrialParamByFeature( 217 private static native String nativeGetFieldTrialParamByFeature(
217 String featureName, String paramName); 218 String featureName, String paramName);
218 private static native int nativeGetFieldTrialParamByFeatureAsInt( 219 private static native int nativeGetFieldTrialParamByFeatureAsInt(
219 String featureName, String paramName, int defaultValue); 220 String featureName, String paramName, int defaultValue);
220 private static native double nativeGetFieldTrialParamByFeatureAsDouble( 221 private static native double nativeGetFieldTrialParamByFeatureAsDouble(
221 String featureName, String paramName, double defaultValue); 222 String featureName, String paramName, double defaultValue);
222 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean( 223 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean(
223 String featureName, String paramName, boolean defaultValue); 224 String featureName, String paramName, boolean defaultValue);
224 } 225 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/WarmupManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698