Commit 26584152 authored by miguelg@chromium.org's avatar miguelg@chromium.org

Disable EnhancedBookmarkImageFetching on Android.

It is trying to load some extension code that it's not available and thus breaking android.

BUG=401921

TBR=sky
NOTRY=true

ran all the linux and android bots but didn't want to wait for the windows ones to finish since it does not affect them and we need to fix the build

Review URL: https://codereview.chromium.org/447403003

Cr-Commit-Position: refs/heads/master@{#288341}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288341 0039d316-1c4b-4281-b951-d872f2087c98
parent 6e729daa
...@@ -28,6 +28,9 @@ std::string GetEnhancedBookmarksExtensionIdFromFinch() { ...@@ -28,6 +28,9 @@ std::string GetEnhancedBookmarksExtensionIdFromFinch() {
// Returns true if enhanced bookmarks experiment is enabled from Finch. // Returns true if enhanced bookmarks experiment is enabled from Finch.
bool IsEnhancedBookmarksExperimentEnabledFromFinch() { bool IsEnhancedBookmarksExperimentEnabledFromFinch() {
#if defined(OS_ANDROID)
return false;
#endif
std::string ext_id = GetEnhancedBookmarksExtensionIdFromFinch(); std::string ext_id = GetEnhancedBookmarksExtensionIdFromFinch();
const extensions::FeatureProvider* feature_provider = const extensions::FeatureProvider* feature_provider =
extensions::FeatureProvider::GetPermissionFeatures(); extensions::FeatureProvider::GetPermissionFeatures();
......
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