| 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 | 10 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // Alphabetical: | 118 // Alphabetical: |
| 119 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati
onV1"; | 119 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati
onV1"; |
| 120 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati
onV2"; | 120 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati
onV2"; |
| 121 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps"; | 121 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps"; |
| 122 public static final String ANDROID_PAYMENT_APPS_FILTER = "AndroidPaymentApps
Filter"; | 122 public static final String ANDROID_PAYMENT_APPS_FILTER = "AndroidPaymentApps
Filter"; |
| 123 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard
holderName"; | 123 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard
holderName"; |
| 124 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand
ling"; | 124 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand
ling"; |
| 125 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI"; | 125 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI"; |
| 126 public static final String CHROME_HOME = "ChromeHome"; | 126 public static final String CHROME_HOME = "ChromeHome"; |
| 127 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib
oxGeolocation"; | 127 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib
oxGeolocation"; |
| 128 public static final String CONTENT_SUGGESTIONS_FAVICONS_FROM_NEW_SERVER = |
| 129 "ContentSuggestionsFaviconsFromNewServer"; |
| 128 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea
rchSingleActions"; | 130 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea
rchSingleActions"; |
| 129 public static final String CONTEXTUAL_SEARCH_URL_ACTIONS = "ContextualSearch
UrlActions"; | 131 public static final String CONTEXTUAL_SEARCH_URL_ACTIONS = "ContextualSearch
UrlActions"; |
| 130 public static final String CUSTOM_FEEDBACK_UI = "CustomFeedbackUi"; | 132 public static final String CUSTOM_FEEDBACK_UI = "CustomFeedbackUi"; |
| 131 /** Whether we show an important sites dialog in the "Clear Browsing Data" f
low. */ | 133 /** Whether we show an important sites dialog in the "Clear Browsing Data" f
low. */ |
| 132 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; | 134 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; |
| 133 public static final String TABS_IN_CBD = "TabsInCBD"; | 135 public static final String TABS_IN_CBD = "TabsInCBD"; |
| 134 public static final String IMPROVED_A2HS = "ImprovedA2HS"; | 136 public static final String IMPROVED_A2HS = "ImprovedA2HS"; |
| 135 public static final String NEW_PHOTO_PICKER = "NewPhotoPicker"; | 137 public static final String NEW_PHOTO_PICKER = "NewPhotoPicker"; |
| 136 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort"; | 138 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort"; |
| 137 public static final String NTP_CONDENSED_LAYOUT = "NTPCondensedLayout"; | 139 public static final String NTP_CONDENSED_LAYOUT = "NTPCondensedLayout"; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 157 private static native boolean nativeIsEnabled(String featureName); | 159 private static native boolean nativeIsEnabled(String featureName); |
| 158 private static native String nativeGetFieldTrialParamByFeature( | 160 private static native String nativeGetFieldTrialParamByFeature( |
| 159 String featureName, String paramName); | 161 String featureName, String paramName); |
| 160 private static native int nativeGetFieldTrialParamByFeatureAsInt( | 162 private static native int nativeGetFieldTrialParamByFeatureAsInt( |
| 161 String featureName, String paramName, int defaultValue); | 163 String featureName, String paramName, int defaultValue); |
| 162 private static native double nativeGetFieldTrialParamByFeatureAsDouble( | 164 private static native double nativeGetFieldTrialParamByFeatureAsDouble( |
| 163 String featureName, String paramName, double defaultValue); | 165 String featureName, String paramName, double defaultValue); |
| 164 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean( | 166 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean( |
| 165 String featureName, String paramName, boolean defaultValue); | 167 String featureName, String paramName, boolean defaultValue); |
| 166 } | 168 } |
| OLD | NEW |