| OLD | NEW |
| 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 Loading... |
| 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_CATEGORIES = "ContentSuggesti
onsCategories"; | 165 public static final String CONTENT_SUGGESTIONS_CATEGORIES = "ContentSuggesti
onsCategories"; |
| 165 public static final String CONTENT_SUGGESTIONS_LARGE_THUMBNAIL = | 166 public static final String CONTENT_SUGGESTIONS_LARGE_THUMBNAIL = |
| 166 "ContentSuggestionsLargeThumbnail"; | 167 "ContentSuggestionsLargeThumbnail"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |