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

Unified Diff: chrome/browser/geolocation/geolocation_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/geolocation/geolocation_infobar_delegate.cc
diff --git a/chrome/browser/geolocation/geolocation_infobar_delegate.cc b/chrome/browser/geolocation/geolocation_infobar_delegate.cc
deleted file mode 100644
index b64ae702623c76e0d6f297d761e9d9f12771ac85..0000000000000000000000000000000000000000
--- a/chrome/browser/geolocation/geolocation_infobar_delegate.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2012 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/geolocation/geolocation_infobar_delegate.h"
-
-#include "chrome/browser/android/android_theme_resources.h"
-#include "chrome/browser/infobars/infobar_service.h"
-#include "chrome/grit/generated_resources.h"
-#include "components/infobars/core/infobar.h"
-#include "components/url_formatter/elide_url.h"
-#include "grit/generated_resources.h"
-#include "ui/base/l10n/l10n_util.h"
-
-// static
-infobars::InfoBar* GeolocationInfoBarDelegate::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))));
-}
-
-GeolocationInfoBarDelegate::GeolocationInfoBarDelegate(
- 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) {
-}
-
-GeolocationInfoBarDelegate::~GeolocationInfoBarDelegate() {
-}
-
-int GeolocationInfoBarDelegate::GetIconId() const {
- return IDR_ANDROID_INFOBAR_GEOLOCATION;
-}
-
-base::string16 GeolocationInfoBarDelegate::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