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

Unified Diff: chrome/browser/media/protected_media_identifier_infobar_delegate.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.cc
diff --git a/chrome/browser/media/protected_media_identifier_infobar_delegate.cc b/chrome/browser/media/protected_media_identifier_infobar_delegate.cc
deleted file mode 100644
index a182244a6b05eae187180f2a9bc16ed674606cf4..0000000000000000000000000000000000000000
--- a/chrome/browser/media/protected_media_identifier_infobar_delegate.cc
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// 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/android/android_theme_resources.h"
-#include "chrome/browser/infobars/infobar_service.h"
-#include "chrome/common/url_constants.h"
-#include "chrome/grit/generated_resources.h"
-#include "components/infobars/core/infobar.h"
-#include "components/url_formatter/elide_url.h"
-#include "grit/components_strings.h"
-#include "ui/base/l10n/l10n_util.h"
-
-// static
-infobars::InfoBar* ProtectedMediaIdentifierInfoBarDelegate::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(
- requesting_frame, display_languages, callback))));
-}
-
-ProtectedMediaIdentifierInfoBarDelegate::
- ProtectedMediaIdentifierInfoBarDelegate(
- 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) {
-}
-
-ProtectedMediaIdentifierInfoBarDelegate::
- ~ProtectedMediaIdentifierInfoBarDelegate() {
-}
-
-int ProtectedMediaIdentifierInfoBarDelegate::GetIconId() const {
- return IDR_ANDROID_INFOBAR_PROTECTED_MEDIA_IDENTIFIER;
-}
-
-base::string16 ProtectedMediaIdentifierInfoBarDelegate::GetMessageText() const {
- return l10n_util::GetStringFUTF16(
- IDS_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_QUESTION,
- url_formatter::FormatUrlForSecurityDisplay(requesting_frame_,
- display_languages_));
-}
-
-base::string16 ProtectedMediaIdentifierInfoBarDelegate::GetLinkText() const {
- return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
-}
-
-GURL ProtectedMediaIdentifierInfoBarDelegate::GetLinkURL() const {
- return GURL(chrome::kEnhancedPlaybackNotificationLearnMoreURL);
-}

Powered by Google App Engine
This is Rietveld 408576698