| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard
holderName"; | 52 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard
holderName"; |
| 53 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand
ling"; | 53 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand
ling"; |
| 54 public static final String CHROME_HOME = "ChromeHome"; | 54 public static final String CHROME_HOME = "ChromeHome"; |
| 55 /** Whether we show an important sites dialog in the "Clear Browsing Data" f
low. */ | 55 /** Whether we show an important sites dialog in the "Clear Browsing Data" f
low. */ |
| 56 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; | 56 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; |
| 57 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort"; | 57 public static final String NO_CREDIT_CARD_ABORT = "NoCreditCardAbort"; |
| 58 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText"; | 58 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText"; |
| 59 public static final String NTP_SNIPPETS = "NTPSnippets"; | 59 public static final String NTP_SNIPPETS = "NTPSnippets"; |
| 60 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline"
; | 60 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline"
; |
| 61 public static final String NTP_SUGGESTIONS_SECTION_DISMISSAL = "NTPSuggestio
nsSectionDismissal"; | 61 public static final String NTP_SUGGESTIONS_SECTION_DISMISSAL = "NTPSuggestio
nsSectionDismissal"; |
| 62 public static final String SCAN_CARDS_IN_WEB_PAYMENTS = "ScanCardsInWebPayme
nts"; | |
| 63 public static final String TAB_REPARENTING = "TabReparenting"; | 62 public static final String TAB_REPARENTING = "TabReparenting"; |
| 64 public static final String WEB_PAYMENTS = "WebPayments"; | 63 public static final String WEB_PAYMENTS = "WebPayments"; |
| 65 public static final String WEBAPKS = "WebApks"; | 64 public static final String WEBAPKS = "WebApks"; |
| 66 | 65 |
| 67 private static native boolean nativeIsEnabled(String featureName); | 66 private static native boolean nativeIsEnabled(String featureName); |
| 68 } | 67 } |
| OLD | NEW |