Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use consistent integer type for request ID #29540

Merged
merged 1 commit into from Jun 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/browser/net/proxying_url_loader_factory.cc
Expand Up @@ -36,7 +36,7 @@ ProxyingURLLoaderFactory::InProgressRequest::FollowRedirectParams::

ProxyingURLLoaderFactory::InProgressRequest::InProgressRequest(
ProxyingURLLoaderFactory* factory,
int64_t web_request_id,
uint64_t web_request_id,
int32_t view_routing_id,
int32_t frame_routing_id,
int32_t network_service_request_id,
Expand Down
2 changes: 1 addition & 1 deletion shell/browser/net/proxying_url_loader_factory.h
Expand Up @@ -53,7 +53,7 @@ class ProxyingURLLoaderFactory
// For usual requests
InProgressRequest(
ProxyingURLLoaderFactory* factory,
int64_t web_request_id,
uint64_t web_request_id,
int32_t view_routing_id,
int32_t frame_routing_id,
int32_t network_service_request_id,
Expand Down