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

Unified Diff: chrome/browser/media/protected_media_identifier_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/media/protected_media_identifier_infobar_delegate_android.cc
diff --git a/chrome/browser/media/protected_media_identifier_infobar_delegate.cc b/chrome/browser/media/protected_media_identifier_infobar_delegate_android.cc
similarity index 59%
rename from chrome/browser/media/protected_media_identifier_infobar_delegate.cc
rename to chrome/browser/media/protected_media_identifier_infobar_delegate_android.cc
index a182244a6b05eae187180f2a9bc16ed674606cf4..b184daef0cc220fce13b4eab1f4f1db26841e54c 100644
--- a/chrome/browser/media/protected_media_identifier_infobar_delegate.cc
+++ b/chrome/browser/media/protected_media_identifier_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/media/protected_media_identifier_infobar_delegate.h"
+#include "chrome/browser/media/protected_media_identifier_infobar_delegate_android.h"
#include "chrome/browser/android/android_theme_resources.h"
#include "chrome/browser/infobars/infobar_service.h"
@@ -14,49 +14,49 @@
#include "ui/base/l10n/l10n_util.h"
// static
-infobars::InfoBar* ProtectedMediaIdentifierInfoBarDelegate::Create(
+infobars::InfoBar* ProtectedMediaIdentifierInfoBarDelegateAndroid::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 ProtectedMediaIdentifierInfoBarDelegate(
+ return infobar_service->AddInfoBar(
+ infobar_service->CreateConfirmInfoBar(scoped_ptr<ConfirmInfoBarDelegate>(
+ new ProtectedMediaIdentifierInfoBarDelegateAndroid(
requesting_frame, display_languages, callback))));
}
-ProtectedMediaIdentifierInfoBarDelegate::
- ProtectedMediaIdentifierInfoBarDelegate(
- const GURL& requesting_frame,
- const std::string& display_languages,
- const PermissionSetCallback& callback)
+ProtectedMediaIdentifierInfoBarDelegateAndroid::
+ ProtectedMediaIdentifierInfoBarDelegateAndroid(
+ const GURL& requesting_frame,
+ const std::string& display_languages,
+ const PermissionSetCallback& callback)
: PermissionInfobarDelegate(
requesting_frame,
CONTENT_SETTINGS_TYPE_PROTECTED_MEDIA_IDENTIFIER,
callback),
requesting_frame_(requesting_frame),
- display_languages_(display_languages) {
-}
+ display_languages_(display_languages) {}
-ProtectedMediaIdentifierInfoBarDelegate::
- ~ProtectedMediaIdentifierInfoBarDelegate() {
-}
+ProtectedMediaIdentifierInfoBarDelegateAndroid::
+ ~ProtectedMediaIdentifierInfoBarDelegateAndroid() {}
-int ProtectedMediaIdentifierInfoBarDelegate::GetIconId() const {
+int ProtectedMediaIdentifierInfoBarDelegateAndroid::GetIconId() const {
return IDR_ANDROID_INFOBAR_PROTECTED_MEDIA_IDENTIFIER;
}
-base::string16 ProtectedMediaIdentifierInfoBarDelegate::GetMessageText() const {
+base::string16 ProtectedMediaIdentifierInfoBarDelegateAndroid::GetMessageText()
+ const {
return l10n_util::GetStringFUTF16(
IDS_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_QUESTION,
url_formatter::FormatUrlForSecurityDisplay(requesting_frame_,
display_languages_));
}
-base::string16 ProtectedMediaIdentifierInfoBarDelegate::GetLinkText() const {
+base::string16 ProtectedMediaIdentifierInfoBarDelegateAndroid::GetLinkText()
+ const {
return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
}
-GURL ProtectedMediaIdentifierInfoBarDelegate::GetLinkURL() const {
+GURL ProtectedMediaIdentifierInfoBarDelegateAndroid::GetLinkURL() const {
return GURL(chrome::kEnhancedPlaybackNotificationLearnMoreURL);
}

Powered by Google App Engine
This is Rietveld 408576698