Commit a35ccf64 authored by Hung Vu's avatar Hung Vu Committed by Commit Bot

[Location Suggestion] Expose feature flag to Java.

This CL exposes the smart suggestion for large downloads feature flag to Java.

Bug: 1118207
Change-Id: I034376b620414ae674a68b927e2aebd419f203c3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2410960
Commit-Queue: Hung Vu <vuhung@google.com>
Reviewed-by: default avatarMin Qin <qinmin@chromium.org>
Reviewed-by: default avatarShakti Sahu <shaktisahu@chromium.org>
Reviewed-by: default avatarXing Liu <xingliu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#807216}
parent 10bcb85c
...@@ -80,6 +80,7 @@ const base::Feature* kFeaturesExposedToJava[] = { ...@@ -80,6 +80,7 @@ const base::Feature* kFeaturesExposedToJava[] = {
&device::kWebAuthPhoneSupport, &device::kWebAuthPhoneSupport,
&download::features::kDownloadAutoResumptionNative, &download::features::kDownloadAutoResumptionNative,
&download::features::kDownloadLater, &download::features::kDownloadLater,
&download::features::kSmartSuggestionForLargeDownloads,
&download::features::kUseDownloadOfflineContentProvider, &download::features::kUseDownloadOfflineContentProvider,
&features::kClearOldBrowsingData, &features::kClearOldBrowsingData,
&features::kDownloadsLocationChange, &features::kDownloadsLocationChange,
......
...@@ -396,6 +396,8 @@ public abstract class ChromeFeatureList { ...@@ -396,6 +396,8 @@ public abstract class ChromeFeatureList {
public static final String SHARED_CLIPBOARD_UI = "SharedClipboardUI"; public static final String SHARED_CLIPBOARD_UI = "SharedClipboardUI";
public static final String SHARING_QR_CODE_ANDROID = "SharingQrCodeAndroid"; public static final String SHARING_QR_CODE_ANDROID = "SharingQrCodeAndroid";
public static final String SHOW_TRUSTED_PUBLISHER_URL = "ShowTrustedPublisherURL"; public static final String SHOW_TRUSTED_PUBLISHER_URL = "ShowTrustedPublisherURL";
public static final String SMART_SUGGESTION_FOR_LARGE_DOWNLOADS =
"SmartSuggestionForLargeDownloads";
public static final String SPANNABLE_INLINE_AUTOCOMPLETE = "SpannableInlineAutocomplete"; public static final String SPANNABLE_INLINE_AUTOCOMPLETE = "SpannableInlineAutocomplete";
public static final String SPLIT_CACHE_BY_NETWORK_ISOLATION_KEY = public static final String SPLIT_CACHE_BY_NETWORK_ISOLATION_KEY =
"SplitCacheByNetworkIsolationKey"; "SplitCacheByNetworkIsolationKey";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment