Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: chrome/browser/geolocation/geolocation_infobar_delegate_android.cc

Issue 1392023004: Rename android only infobars (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try again Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_));

Powered by Google App Engine
This is Rietveld 408576698