refactor: replace base::StringPrintf() calls with absl::StrFormat() (#44515)
refactor: replace base::StringPrintf() calls with absl::StFormat()
The former is now a pass-through for the latter and is slated for removal
Xref: https://issues.chromium.org/issues/40241565
4907781
This commit is contained in:
parent
c63d0d61e7
commit
726d439399
15 changed files with 59 additions and 61 deletions
|
@ -11,7 +11,6 @@
|
|||
|
||||
#include "base/containers/fixed_flat_map.h"
|
||||
#include "base/strings/string_number_conversions.h"
|
||||
#include "base/strings/stringprintf.h"
|
||||
#include "base/uuid.h"
|
||||
#include "content/public/browser/browser_thread.h"
|
||||
#include "content/public/browser/storage_partition.h"
|
||||
|
@ -34,6 +33,7 @@
|
|||
#include "shell/common/gin_converters/net_converter.h"
|
||||
#include "shell/common/gin_converters/value_converter.h"
|
||||
#include "shell/common/gin_helper/dictionary.h"
|
||||
#include "third_party/abseil-cpp/absl/strings/str_format.h"
|
||||
#include "third_party/blink/public/mojom/loader/resource_load_info.mojom-shared.h"
|
||||
|
||||
#include "shell/common/node_includes.h"
|
||||
|
@ -117,9 +117,9 @@ network::mojom::URLResponseHeadPtr ToResponseHead(
|
|||
int status_code = net::HTTP_OK;
|
||||
dict.Get("statusCode", &status_code);
|
||||
head->headers = base::MakeRefCounted<net::HttpResponseHeaders>(
|
||||
base::StringPrintf("HTTP/1.1 %d %s", status_code,
|
||||
net::GetHttpReasonPhrase(
|
||||
static_cast<net::HttpStatusCode>(status_code))));
|
||||
absl::StrFormat("HTTP/1.1 %d %s", status_code,
|
||||
net::GetHttpReasonPhrase(
|
||||
static_cast<net::HttpStatusCode>(status_code))));
|
||||
|
||||
dict.Get("charset", &head->charset);
|
||||
bool has_mime_type = dict.Get("mimeType", &head->mime_type);
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#include "base/functional/bind.h"
|
||||
#include "base/functional/callback_helpers.h"
|
||||
#include "base/strings/string_split.h"
|
||||
#include "base/strings/stringprintf.h"
|
||||
#include "content/public/browser/browser_context.h"
|
||||
#include "extensions/browser/extension_navigation_ui_data.h"
|
||||
#include "net/base/completion_repeating_callback.h"
|
||||
|
@ -25,6 +24,7 @@
|
|||
#include "services/network/public/mojom/url_response_head.mojom.h"
|
||||
#include "shell/browser/net/asar/asar_url_loader.h"
|
||||
#include "shell/common/options_switches.h"
|
||||
#include "third_party/abseil-cpp/absl/strings/str_format.h"
|
||||
#include "url/origin.h"
|
||||
|
||||
namespace electron {
|
||||
|
@ -400,7 +400,7 @@ void ProxyingURLLoaderFactory::InProgressRequest::
|
|||
net::SiteForCookies::FromUrl(redirect_url_);
|
||||
|
||||
auto head = network::mojom::URLResponseHead::New();
|
||||
std::string headers = base::StringPrintf(
|
||||
std::string headers = absl::StrFormat(
|
||||
"HTTP/1.1 %i Internal Redirect\n"
|
||||
"Location: %s\n"
|
||||
"Non-Authoritative-Reason: WebRequest API\n\n",
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
|
||||
#include "base/functional/bind.h"
|
||||
#include "base/strings/string_util.h"
|
||||
#include "base/strings/stringprintf.h"
|
||||
#include "content/public/browser/browser_thread.h"
|
||||
#include "extensions/browser/extension_navigation_ui_data.h"
|
||||
#include "net/base/ip_endpoint.h"
|
||||
#include "services/network/public/mojom/url_response_head.mojom.h"
|
||||
#include "third_party/abseil-cpp/absl/strings/str_format.h"
|
||||
|
||||
namespace electron {
|
||||
|
||||
|
@ -139,7 +139,7 @@ void ProxyingWebSocket::OnConnectionEstablished(
|
|||
}
|
||||
|
||||
response_->headers =
|
||||
base::MakeRefCounted<net::HttpResponseHeaders>(base::StringPrintf(
|
||||
base::MakeRefCounted<net::HttpResponseHeaders>(absl::StrFormat(
|
||||
"HTTP/%d.%d %d %s", handshake_response_->http_version.major_value(),
|
||||
handshake_response_->http_version.minor_value(),
|
||||
handshake_response_->status_code,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue