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

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

Issue 2341643008: Defaulting all downloads to go through Chrome network stack (Closed)
Patch Set: rebase Created 4 years, 3 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/download/DownloadManagerService.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.annotations.JNINamespace; 7 import org.chromium.base.annotations.JNINamespace;
8 import org.chromium.base.annotations.MainDex; 8 import org.chromium.base.annotations.MainDex;
9 9
10 /** 10 /**
(...skipping 20 matching lines...) Expand all
31 31
32 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1"; 32 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1";
33 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName"; 33 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName";
34 /** Whether we show an important sites dialog in the "Clear Browsing Data" f low. */ 34 /** Whether we show an important sites dialog in the "Clear Browsing Data" f low. */
35 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD"; 35 public static final String IMPORTANT_SITES_IN_CBD = "ImportantSitesInCBD";
36 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText"; 36 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText";
37 public static final String NTP_MATERIAL_DESIGN = "NTPMaterialDesign"; 37 public static final String NTP_MATERIAL_DESIGN = "NTPMaterialDesign";
38 public static final String NTP_SNIPPETS = "NTPSnippets"; 38 public static final String NTP_SNIPPETS = "NTPSnippets";
39 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline" ; 39 public static final String NTP_SNIPPETS_SAVE_TO_OFFLINE = "NTPSaveToOffline" ;
40 public static final String SCAN_CARDS_IN_WEB_PAYMENTS = "ScanCardsInWebPayme nts"; 40 public static final String SCAN_CARDS_IN_WEB_PAYMENTS = "ScanCardsInWebPayme nts";
41 public static final String SYSTEM_DOWNLOAD_MANAGER = "SystemDownloadManager" ;
42 public static final String TAB_REPARENTING = "TabReparenting"; 41 public static final String TAB_REPARENTING = "TabReparenting";
43 public static final String WEB_PAYMENTS = "WebPayments"; 42 public static final String WEB_PAYMENTS = "WebPayments";
44 43
45 private static native boolean nativeIsEnabled(String featureName); 44 private static native boolean nativeIsEnabled(String featureName);
46 } 45 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/download/DownloadManagerService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698