commit | 7f3bd3d40fffacda522b97ddfa94085a35d0a0c9 | [log] [tgz] |
---|---|---|
author | Ryan Hamilton <[email protected]> | Sat Apr 23 00:07:39 2022 |
committer | Chromium LUCI CQ <[email protected]> | Sat Apr 23 00:07:39 2022 |
tree | 107990841dfe62300da957f927f8753facd00b77 | |
parent | 9052a2ff2d7e89ed05c136ee7eccdc539048c347 [diff] [blame] |
Remove net wrappers around base/strings/escape.h A number of string escaping functions were moved from //net to //base/strings recently. crbug.com/1100760 was filed to move callers to the new location and remove the net:: functions. This CL does that and removes net/base/escape.h and .cc. https://docs.google.com/document/d/1bNDZyi3uHN1aYf1ReWpa8R9DHM50JnHcouH3d3G8Na8/edit# Bug: 1068052 Change-Id: Ic879d91e53f1d0f4fa925d7e4887e40ef8350709 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3583363 Reviewed-by: danakj <[email protected]> Owners-Override: danakj <[email protected]> Commit-Queue: Ryan Hamilton <[email protected]> Cr-Commit-Position: refs/heads/main@{#995437}
diff --git a/content/browser/renderer_host/navigation_controller_impl.cc b/content/browser/renderer_host/navigation_controller_impl.cc index 30b98ca..85489a9 100644 --- a/content/browser/renderer_host/navigation_controller_impl.cc +++ b/content/browser/renderer_host/navigation_controller_impl.cc
@@ -46,6 +46,7 @@ #include "base/metrics/histogram_macros.h" #include "base/numerics/safe_conversions.h" #include "base/stl_util.h" +#include "base/strings/escape.h" #include "base/strings/string_piece.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" @@ -95,7 +96,6 @@ #include "content/public/common/url_constants.h" #include "content/public/common/url_utils.h" #include "media/base/mime_util.h" -#include "net/base/escape.h" #include "net/http/http_status_code.h" #include "services/metrics/public/cpp/ukm_builders.h" #include "services/metrics/public/cpp/ukm_recorder.h"