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

Unified Diff: chrome/browser/page_load_metrics/page_load_metrics_observer.h

Issue 2798953002: [PageLoadMetrics] Keep track of Ad Sizes on Pages (Closed)
Patch Set: Rebase Created 3 years, 8 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
Index: chrome/browser/page_load_metrics/page_load_metrics_observer.h
diff --git a/chrome/browser/page_load_metrics/page_load_metrics_observer.h b/chrome/browser/page_load_metrics/page_load_metrics_observer.h
index ad624597aa9b54447262b3ed9d886bda1222a969..c84787a443019d30ad4dcad76c606d1878f092f1 100644
--- a/chrome/browser/page_load_metrics/page_load_metrics_observer.h
+++ b/chrome/browser/page_load_metrics/page_load_metrics_observer.h
@@ -14,6 +14,7 @@
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_data.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents_observer.h"
+#include "content/public/common/resource_type.h"
#include "third_party/WebKit/public/platform/WebInputEvent.h"
#include "url/gurl.h"
@@ -201,6 +202,8 @@ struct PageLoadExtraInfo {
// load.
struct ExtraRequestCompleteInfo {
ExtraRequestCompleteInfo(
+ const GURL& url,
+ int frame_tree_node_id,
bool was_cached,
int64_t raw_body_bytes,
int64_t original_network_content_length,
@@ -210,6 +213,12 @@ struct ExtraRequestCompleteInfo {
~ExtraRequestCompleteInfo();
+ // The URL for the request.
+ const GURL url;
+
+ // The frame tree node id that initiated the request.
+ const int frame_tree_node_id;
+
// True if the resource was loaded from cache.
const bool was_cached;
@@ -287,6 +296,15 @@ class PageLoadMetricsObserver {
// callbacks, and will be deleted after invocation of this method returns.
virtual ObservePolicy OnCommit(content::NavigationHandle* navigation_handle);
+ // OnDidFinishSubFrameNavigation is triggered when a sub-frame of the
+ // committed page has finished navigating. It has either committed, aborted,
+ // was a same document navigation, or has been replaced. It is up to the
+ // observer to query |navigation_handle| to determine which happened. Note
+ // that |navigation_handle| will be destroyed soon after this call. Don't
+ // hold a reference to it.
+ virtual ObservePolicy OnDidFinishSubFrameNavigation(
+ content::NavigationHandle* navigation_handle);
+
// OnHidden is triggered when a page leaves the foreground. It does not fire
// when a foreground page is permanently closed; for that, listen to
// OnComplete instead.
@@ -405,7 +423,9 @@ class PageLoadMetricsObserver {
virtual void OnStartedResource(
const ExtraRequestStartInfo& extra_request_start_info) {}
- // Called whenever a request is loaded for this page load.
+ // Called whenever a request is loaded for this page load. This comes
+ // unfiltered from the ResourceDispatcherHost and may include blob requests
+ // and data uris.
virtual void OnLoadedResource(
const ExtraRequestCompleteInfo& extra_request_complete_info) {}
};

Powered by Google App Engine
This is Rietveld 408576698