1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/geolocation/geolocation_infobar_delegate.h"
7 #include "chrome/browser/infobars/infobar_service.h"
8 #include "chrome/grit/generated_resources.h"
9 #include "components/infobars/core/infobar.h"
10 #include "components/url_formatter/url_formatter.h"
11 #include "grit/generated_resources.h"
12 #include "grit/theme_resources.h"
13 #include "ui/base/l10n/l10n_util.h"
17 infobars::InfoBar
* GeolocationInfoBarDelegate::Create(
18 InfoBarService
* infobar_service
,
19 PermissionQueueController
* controller
,
20 const PermissionRequestID
& id
,
21 const GURL
& requesting_frame
,
22 const std::string
& display_languages
) {
23 return infobar_service
->AddInfoBar(infobar_service
->CreateConfirmInfoBar(
24 scoped_ptr
<ConfirmInfoBarDelegate
>(new GeolocationInfoBarDelegate(
25 controller
, id
, requesting_frame
, display_languages
))));
28 GeolocationInfoBarDelegate::GeolocationInfoBarDelegate(
29 PermissionQueueController
* controller
,
30 const PermissionRequestID
& id
,
31 const GURL
& requesting_frame
,
32 const std::string
& display_languages
)
33 : PermissionInfobarDelegate(controller
, id
, requesting_frame
,
34 CONTENT_SETTINGS_TYPE_GEOLOCATION
),
35 requesting_frame_(requesting_frame
),
36 display_languages_(display_languages
) {
39 GeolocationInfoBarDelegate::~GeolocationInfoBarDelegate() {
42 int GeolocationInfoBarDelegate::GetIconID() const {
43 return IDR_INFOBAR_GEOLOCATION
;
46 base::string16
GeolocationInfoBarDelegate::GetMessageText() const {
47 return l10n_util::GetStringFUTF16(
48 IDS_GEOLOCATION_INFOBAR_QUESTION
,
49 url_formatter::FormatUrl(
50 requesting_frame_
, display_languages_
,
51 url_formatter::kFormatUrlOmitUsernamePassword
|
52 url_formatter::kFormatUrlOmitTrailingSlashOnBareHostname
,
53 net::UnescapeRule::SPACES
, nullptr, nullptr, nullptr));