| Index: chrome/browser/android/banners/app_banner_manager_android.cc
|
| diff --git a/chrome/browser/android/banners/app_banner_manager_android.cc b/chrome/browser/android/banners/app_banner_manager_android.cc
|
| index 7d2c80b400efd9ade1db5e1b362ebf5fc0fd36df..602649395107d692f6f0c37bb386013efaae824c 100644
|
| --- a/chrome/browser/android/banners/app_banner_manager_android.cc
|
| +++ b/chrome/browser/android/banners/app_banner_manager_android.cc
|
| @@ -2,10 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <utility>
|
| -
|
| #include "chrome/browser/android/banners/app_banner_manager_android.h"
|
|
|
| +#include <memory>
|
| +#include <utility>
|
| +
|
| #include "base/android/jni_android.h"
|
| #include "base/android/jni_string.h"
|
| #include "base/memory/ptr_util.h"
|
| @@ -18,7 +19,6 @@
|
| #include "chrome/browser/banners/app_banner_metrics.h"
|
| #include "chrome/browser/manifest/manifest_icon_downloader.h"
|
| #include "chrome/browser/manifest/manifest_icon_selector.h"
|
| -#include "chrome/common/chrome_constants.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/common/frame_navigate_params.h"
|
| #include "jni/AppBannerManager_jni.h"
|
| @@ -128,7 +128,7 @@ std::string AppBannerManagerAndroid::GetAppIdentifier() {
|
|
|
| std::string AppBannerManagerAndroid::GetBannerType() {
|
| return native_app_data_.is_null() ? AppBannerManager::GetBannerType()
|
| - : "android";
|
| + : "play";
|
| }
|
|
|
| int AppBannerManagerAndroid::GetIdealIconSizeInDp() {
|
|
|