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

Unified Diff: chrome/browser/chrome_quota_permission_context.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: Compile fixes following rebase Created 5 years, 6 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/chrome_quota_permission_context.cc
diff --git a/chrome/browser/chrome_quota_permission_context.cc b/chrome/browser/chrome_quota_permission_context.cc
index cc4db3692d32fd60b5ffe4d7fbc1d821a8d1cd2a..332afb64605e47137f41c040688e9fecfa8c2e2a 100644
--- a/chrome/browser/chrome_quota_permission_context.cc
+++ b/chrome/browser/chrome_quota_permission_context.cc
@@ -19,11 +19,11 @@
#include "chrome/grit/locale_settings.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "components/infobars/core/infobar.h"
+#include "components/url_formatter/url_formatter.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/navigation_details.h"
#include "content/public/browser/web_contents.h"
#include "grit/theme_resources.h"
-#include "net/base/net_util.h"
#include "storage/common/quota/quota_types.h"
#include "ui/base/l10n/l10n_util.h"
#include "url/gurl.h"
@@ -93,14 +93,14 @@ int QuotaPermissionRequest::GetIconID() const {
base::string16 QuotaPermissionRequest::GetMessageText() const {
return l10n_util::GetStringFUTF16(
- (requested_quota_ > kRequestLargeQuotaThreshold ?
- IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION :
- IDS_REQUEST_QUOTA_INFOBAR_QUESTION),
- net::FormatUrl(origin_url_, display_languages_,
- net::kFormatUrlOmitUsernamePassword |
- net::kFormatUrlOmitTrailingSlashOnBareHostname,
- net::UnescapeRule::SPACES, NULL, NULL, NULL)
- );
+ (requested_quota_ > kRequestLargeQuotaThreshold
+ ? IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION
+ : IDS_REQUEST_QUOTA_INFOBAR_QUESTION),
+ url_formatter::FormatUrl(
+ origin_url_, display_languages_,
+ url_formatter::kFormatUrlOmitUsernamePassword |
+ url_formatter::kFormatUrlOmitTrailingSlashOnBareHostname,
+ net::UnescapeRule::SPACES, nullptr, nullptr, nullptr));
}
base::string16 QuotaPermissionRequest::GetMessageTextFragment() const {
@@ -219,14 +219,14 @@ base::string16 RequestQuotaInfoBarDelegate::GetMessageText() const {
// If the site requested larger quota than this threshold, show a different
// message to the user.
return l10n_util::GetStringFUTF16(
- (requested_quota_ > kRequestLargeQuotaThreshold ?
- IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION :
- IDS_REQUEST_QUOTA_INFOBAR_QUESTION),
- net::FormatUrl(origin_url_, display_languages_,
- net::kFormatUrlOmitUsernamePassword |
- net::kFormatUrlOmitTrailingSlashOnBareHostname,
- net::UnescapeRule::SPACES, NULL, NULL, NULL)
- );
+ (requested_quota_ > kRequestLargeQuotaThreshold
+ ? IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION
+ : IDS_REQUEST_QUOTA_INFOBAR_QUESTION),
+ url_formatter::FormatUrl(
+ origin_url_, display_languages_,
+ url_formatter::kFormatUrlOmitUsernamePassword |
+ url_formatter::kFormatUrlOmitTrailingSlashOnBareHostname,
+ net::UnescapeRule::SPACES, nullptr, nullptr, nullptr));
}
bool RequestQuotaInfoBarDelegate::Accept() {

Powered by Google App Engine
This is Rietveld 408576698