1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/loader/from_gws_navigation_and_keep_alive_request_observer.h"
#include "chrome/browser/loader/from_gws_navigation_and_keep_alive_request_tracker.h"
#include "chrome/browser/loader/from_gws_navigation_and_keep_alive_request_tracker_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "components/page_load_metrics/browser/features.h"
#include "components/page_load_metrics/browser/page_load_metrics_util.h"
#include "components/page_load_metrics/google/browser/google_url_util.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "services/network/public/cpp/resource_request.h"
FromGWSNavigationAndKeepAliveRequestObserver::
FromGWSNavigationAndKeepAliveRequestObserver(
content::WebContents* web_contents)
: content::WebContentsObserver(web_contents) {}
FromGWSNavigationAndKeepAliveRequestObserver::
~FromGWSNavigationAndKeepAliveRequestObserver() = default;
// static
std::unique_ptr<FromGWSNavigationAndKeepAliveRequestObserver>
FromGWSNavigationAndKeepAliveRequestObserver::MaybeCreateForWebContents(
content::WebContents* web_contents) {
if (!web_contents) {
return nullptr;
}
if (!base::FeatureList::IsEnabled(
page_load_metrics::features::kBeaconLeakageLogging)) {
return nullptr;
}
return base::WrapUnique(
new FromGWSNavigationAndKeepAliveRequestObserver(web_contents));
}
void FromGWSNavigationAndKeepAliveRequestObserver::DidStartNavigation(
content::NavigationHandle* navigation_handle) {
CHECK(navigation_handle);
if (!base::FeatureList::IsEnabled(
page_load_metrics::features::kBeaconLeakageLogging)) {
return;
}
// Ensures the navigation is initiated from a Google SRP.
if (!navigation_handle->GetInitiatorFrameToken().has_value()) {
return;
}
content::RenderFrameHost* initiator_rfh =
content::RenderFrameHost::FromFrameToken(
content::GlobalRenderFrameHostToken(
navigation_handle->GetInitiatorProcessId(),
navigation_handle->GetInitiatorFrameToken().value()));
if (!initiator_rfh) {
return;
}
GURL url = initiator_rfh->GetLastCommittedURL();
if (!page_load_metrics::IsGoogleSearchResultUrl(url)) {
return;
}
if (initiator_rfh->IsInLifecycleState(
content::RenderFrameHost::LifecycleState::kPrerendering)) {
// Skips navigations from prerendering pages, which are not eligible for
// UKM logging.
return;
}
auto navigation_category_id =
page_load_metrics::GetCategoryIdFromUrl(navigation_handle->GetURL());
if (!navigation_category_id.has_value()) {
return;
}
auto* tracker =
FromGWSNavigationAndKeepAliveRequestTrackerFactory::GetForProfile(
Profile::FromBrowserContext(web_contents()->GetBrowserContext()));
if (!tracker) {
return;
}
tracker->TrackNavigation(initiator_rfh->GetGlobalId(),
*navigation_category_id,
initiator_rfh->GetPageUkmSourceId(),
navigation_handle->GetNavigationId());
}
void FromGWSNavigationAndKeepAliveRequestObserver::OnKeepAliveRequestCreated(
const network::ResourceRequest& request,
content::RenderFrameHost* initiator_rfh) {
CHECK(initiator_rfh);
CHECK(request.keepalive);
CHECK(request.keepalive_token.has_value());
if (!base::FeatureList::IsEnabled(
page_load_metrics::features::kBeaconLeakageLogging)) {
return;
}
// Ensures the request is initiated from a Google SRP.
GURL url = initiator_rfh->GetLastCommittedURL();
if (!page_load_metrics::IsGoogleSearchResultUrl(url)) {
return;
}
if (initiator_rfh->IsInLifecycleState(
content::RenderFrameHost::LifecycleState::kPrerendering)) {
// Skips navigations from prerendering pages, which are not eligible for
// UKM logging.
return;
}
// The request and the initiator page must have the same category ID.
auto request_category_id =
page_load_metrics::GetCategoryIdFromUrl(request.url);
if (!request_category_id.has_value()) {
return;
}
auto* tracker =
FromGWSNavigationAndKeepAliveRequestTrackerFactory::GetForProfile(
Profile::FromBrowserContext(web_contents()->GetBrowserContext()));
if (!tracker) {
return;
}
tracker->TrackKeepAliveRequest(
initiator_rfh->GetGlobalId(), *request_category_id,
initiator_rfh->GetPageUkmSourceId(), *request.keepalive_token);
}
|