| Index: chrome/browser/geolocation/geolocation_infobar_delegate_android.cc
|
| diff --git a/chrome/browser/geolocation/geolocation_infobar_delegate.cc b/chrome/browser/geolocation/geolocation_infobar_delegate_android.cc
|
| similarity index 59%
|
| rename from chrome/browser/geolocation/geolocation_infobar_delegate.cc
|
| rename to chrome/browser/geolocation/geolocation_infobar_delegate_android.cc
|
| index b64ae702623c76e0d6f297d761e9d9f12771ac85..0969172a430d36ffeb206814b6c35957c9430991 100644
|
| --- a/chrome/browser/geolocation/geolocation_infobar_delegate.cc
|
| +++ b/chrome/browser/geolocation/geolocation_infobar_delegate_android.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/geolocation/geolocation_infobar_delegate.h"
|
| +#include "chrome/browser/geolocation/geolocation_infobar_delegate_android.h"
|
|
|
| #include "chrome/browser/android/android_theme_resources.h"
|
| #include "chrome/browser/infobars/infobar_service.h"
|
| @@ -13,35 +13,37 @@
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| // static
|
| -infobars::InfoBar* GeolocationInfoBarDelegate::Create(
|
| +infobars::InfoBar* GeolocationInfoBarDelegateAndroidAndroid::Create(
|
| InfoBarService* infobar_service,
|
| const GURL& requesting_frame,
|
| const std::string& display_languages,
|
| const PermissionSetCallback& callback) {
|
| - return infobar_service->AddInfoBar(infobar_service->CreateConfirmInfoBar(
|
| - scoped_ptr<ConfirmInfoBarDelegate>(new GeolocationInfoBarDelegate(
|
| - requesting_frame, display_languages, callback))));
|
| + return infobar_service->AddInfoBar(
|
| + infobar_service->CreateConfirmInfoBar(scoped_ptr<ConfirmInfoBarDelegate>(
|
| + new GeolocationInfoBarDelegateAndroidAndroid(
|
| + requesting_frame, display_languages, callback))));
|
| }
|
|
|
| -GeolocationInfoBarDelegate::GeolocationInfoBarDelegate(
|
| - const GURL& requesting_frame,
|
| - const std::string& display_languages,
|
| - const PermissionSetCallback& callback)
|
| +GeolocationInfoBarDelegateAndroidAndroid::
|
| + GeolocationInfoBarDelegateAndroidAndroid(
|
| + const GURL& requesting_frame,
|
| + const std::string& display_languages,
|
| + const PermissionSetCallback& callback)
|
| : PermissionInfobarDelegate(requesting_frame,
|
| CONTENT_SETTINGS_TYPE_GEOLOCATION,
|
| callback),
|
| requesting_frame_(requesting_frame),
|
| - display_languages_(display_languages) {
|
| -}
|
| + display_languages_(display_languages) {}
|
|
|
| -GeolocationInfoBarDelegate::~GeolocationInfoBarDelegate() {
|
| -}
|
| +GeolocationInfoBarDelegateAndroidAndroid::
|
| + ~GeolocationInfoBarDelegateAndroidAndroid() {}
|
|
|
| -int GeolocationInfoBarDelegate::GetIconId() const {
|
| +int GeolocationInfoBarDelegateAndroidAndroid::GetIconId() const {
|
| return IDR_ANDROID_INFOBAR_GEOLOCATION;
|
| }
|
|
|
| -base::string16 GeolocationInfoBarDelegate::GetMessageText() const {
|
| +base::string16 GeolocationInfoBarDelegateAndroidAndroid::GetMessageText()
|
| + const {
|
| return l10n_util::GetStringFUTF16(IDS_GEOLOCATION_INFOBAR_QUESTION,
|
| url_formatter::FormatUrlForSecurityDisplay(
|
| requesting_frame_, display_languages_));
|
|
|