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

Side by Side Diff: chrome/browser/notifications/notification_permission_infobar_delegate.cc

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again now that CQ is fixed Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/notifications/notification_permission_infobar_delegate. h" 5 #include "chrome/browser/notifications/notification_permission_infobar_delegate. h"
6 6
7 #include "chrome/browser/infobars/infobar_service.h" 7 #include "chrome/browser/infobars/infobar_service.h"
8 #include "chrome/grit/generated_resources.h" 8 #include "chrome/grit/generated_resources.h"
9 #include "components/infobars/core/infobar.h" 9 #include "components/infobars/core/infobar.h"
10 #include "components/url_formatter/url_formatter.h"
10 #include "grit/theme_resources.h" 11 #include "grit/theme_resources.h"
11 #include "net/base/net_util.h" 12 #include "net/base/escape.h"
12 #include "ui/base/l10n/l10n_util.h" 13 #include "ui/base/l10n/l10n_util.h"
13 14
14 // static 15 // static
15 infobars::InfoBar* NotificationPermissionInfobarDelegate::Create( 16 infobars::InfoBar* NotificationPermissionInfobarDelegate::Create(
16 InfoBarService* infobar_service, 17 InfoBarService* infobar_service,
17 PermissionQueueController* controller, 18 PermissionQueueController* controller,
18 const PermissionRequestID& id, 19 const PermissionRequestID& id,
19 const GURL& requesting_frame, 20 const GURL& requesting_frame,
20 const std::string& display_languages) { 21 const std::string& display_languages) {
21 return infobar_service->AddInfoBar(infobar_service->CreateConfirmInfoBar( 22 return infobar_service->AddInfoBar(infobar_service->CreateConfirmInfoBar(
(...skipping 16 matching lines...) Expand all
38 NotificationPermissionInfobarDelegate::~NotificationPermissionInfobarDelegate() 39 NotificationPermissionInfobarDelegate::~NotificationPermissionInfobarDelegate()
39 {} 40 {}
40 41
41 int NotificationPermissionInfobarDelegate::GetIconID() const { 42 int NotificationPermissionInfobarDelegate::GetIconID() const {
42 return IDR_INFOBAR_DESKTOP_NOTIFICATIONS; 43 return IDR_INFOBAR_DESKTOP_NOTIFICATIONS;
43 } 44 }
44 45
45 base::string16 NotificationPermissionInfobarDelegate::GetMessageText() const { 46 base::string16 NotificationPermissionInfobarDelegate::GetMessageText() const {
46 return l10n_util::GetStringFUTF16( 47 return l10n_util::GetStringFUTF16(
47 IDS_NOTIFICATION_PERMISSIONS, 48 IDS_NOTIFICATION_PERMISSIONS,
48 net::FormatUrl(requesting_frame_.GetOrigin(), display_languages_, 49 url_formatter::FormatUrl(
49 net::kFormatUrlOmitUsernamePassword | 50 requesting_frame_.GetOrigin(), display_languages_,
50 net::kFormatUrlOmitTrailingSlashOnBareHostname, 51 url_formatter::kFormatUrlOmitUsernamePassword |
51 net::UnescapeRule::SPACES, nullptr, nullptr, nullptr)); 52 url_formatter::kFormatUrlOmitTrailingSlashOnBareHostname,
53 net::UnescapeRule::SPACES, nullptr, nullptr, nullptr));
52 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698