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

Unified Diff: content/browser/frame_host/navigation_handle_impl.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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
« no previous file with comments | « content/browser/fileapi/fileapi_message_filter.cc ('k') | content/browser/gpu/gpu_internals_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/navigation_handle_impl.cc
diff --git a/content/browser/frame_host/navigation_handle_impl.cc b/content/browser/frame_host/navigation_handle_impl.cc
index bec56e0d385392339d8bb3ea8e5df4f222a38280..9a33f8ebfa1c275b946c847ca3365a31c7b68c52 100644
--- a/content/browser/frame_host/navigation_handle_impl.cc
+++ b/content/browser/frame_host/navigation_handle_impl.cc
@@ -46,7 +46,7 @@ namespace {
// Use this to get a new unique ID for a NavigationHandle during construction.
// The returned ID is guaranteed to be nonzero (zero is the "no ID" indicator).
-int64_t GetUniqueIDInConstructor() {
+int64_t GetUniqueHandleIDInConstructor() {
static int64_t unique_id_counter = 0;
return ++unique_id_counter;
}
@@ -118,7 +118,7 @@ NavigationHandleImpl::NavigationHandleImpl(
request_context_type_(REQUEST_CONTEXT_TYPE_UNSPECIFIED),
mixed_content_context_type_(
blink::WebMixedContentContextType::kBlockable),
- navigation_id_(GetUniqueIDInConstructor()),
+ navigation_id_(GetUniqueHandleIDInConstructor()),
should_replace_current_entry_(false),
redirect_chain_(redirect_chain),
is_download_(false),
« no previous file with comments | « content/browser/fileapi/fileapi_message_filter.cc ('k') | content/browser/gpu/gpu_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698