Remove WebApkAdaptiveIcon feature flag.

Feature has been launched to stable.

Bug: 1147291
Change-Id: I326292a7b38aba0f5a8d71f1dab908f4707c78b3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2542848
Commit-Queue: Evan Stade <[email protected]>
Reviewed-by: Dominick Ng <[email protected]>
Reviewed-by: Glenn Hartmann <[email protected]>
Cr-Commit-Position: refs/heads/master@{#828269}
diff --git a/chrome/browser/android/shortcut_helper.cc b/chrome/browser/android/shortcut_helper.cc
index 768e612..7c5c5db8 100644
--- a/chrome/browser/android/shortcut_helper.cc
+++ b/chrome/browser/android/shortcut_helper.cc
@@ -13,7 +13,6 @@
 #include "base/android/jni_string.h"
 #include "base/bind.h"
 #include "base/callback.h"
-#include "base/feature_list.h"
 #include "base/guid.h"
 #include "base/optional.h"
 #include "base/strings/string16.h"
@@ -21,7 +20,6 @@
 #include "base/threading/thread_restrictions.h"
 #include "chrome/android/chrome_jni_headers/ShortcutHelper_jni.h"
 #include "chrome/browser/android/color_helpers.h"
-#include "chrome/browser/flags/android/chrome_feature_list.h"
 #include "content/public/browser/browser_thread.h"
 #include "content/public/browser/manifest_icon_downloader.h"
 #include "content/public/browser/web_contents.h"
@@ -347,9 +345,8 @@
 
 // static
 bool ShortcutHelper::DoesAndroidSupportMaskableIcons() {
-  return base::FeatureList::IsEnabled(chrome::android::kWebApkAdaptiveIcon) &&
-         base::android::BuildInfo::GetInstance()->sdk_int() >=
-             base::android::SDK_VERSION_OREO;
+  return base::android::BuildInfo::GetInstance()->sdk_int() >=
+         base::android::SDK_VERSION_OREO;
 }
 
 // static