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

Unified Diff: components/url_formatter/elide_url.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: Fold in secure_display to url_formatter Created 5 years, 5 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: components/url_formatter/elide_url.cc
diff --git a/components/secure_display/elide_url.cc b/components/url_formatter/elide_url.cc
similarity index 97%
rename from components/secure_display/elide_url.cc
rename to components/url_formatter/elide_url.cc
index ec4d65a38069b48dc2e9f1a165d7c6441ccc715f..8d7a91f9a3d0b2e51b24fa23cbc6c1546fbb4163 100644
--- a/components/secure_display/elide_url.cc
+++ b/components/url_formatter/elide_url.cc
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/secure_display/elide_url.h"
+#include "components/url_formatter/elide_url.h"
#include "base/logging.h"
#include "base/strings/string_split.h"
#include "base/strings/utf_string_conversions.h"
+#include "components/url_formatter/url_formatter.h"
#include "net/base/escape.h"
-#include "net/base/net_util.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "ui/gfx/text_elider.h"
#include "ui/gfx/text_utils.h"
@@ -108,7 +108,7 @@ void SplitHost(const GURL& url,
#endif // !defined(OS_ANDROID)
} // namespace
-namespace secure_display {
+namespace url_formatter {
#if !defined(OS_ANDROID)
@@ -122,9 +122,9 @@ base::string16 ElideUrl(const GURL& url,
const std::string& languages) {
// Get a formatted string and corresponding parsing of the url.
url::Parsed parsed;
- const base::string16 url_string =
- net::FormatUrl(url, languages, net::kFormatUrlOmitAll,
- net::UnescapeRule::SPACES, &parsed, NULL, NULL);
+ const base::string16 url_string = url_formatter::FormatUrl(
+ url, languages, url_formatter::kFormatUrlOmitAll,
+ net::UnescapeRule::SPACES, &parsed, nullptr, nullptr);
if (available_pixel_width <= 0)
return url_string;
@@ -312,7 +312,7 @@ base::string16 ElideHost(const GURL& url,
base::string16 FormatUrlForSecurityDisplay(const GURL& url,
const std::string& languages) {
if (!url.is_valid() || url.is_empty() || !url.IsStandard())
- return net::FormatUrl(url, languages);
+ return url_formatter::FormatUrl(url, languages);
const base::string16 colon(base::ASCIIToUTF16(":"));
const base::string16 scheme_separator(
@@ -350,4 +350,4 @@ base::string16 FormatUrlForSecurityDisplay(const GURL& url,
return result;
}
-} // namespace secure_display
+} // namespace url_formatter

Powered by Google App Engine
This is Rietveld 408576698