diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-12 13:35:13 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-12 13:35:13 +0000 |
commit | d37c33e7b1b74a2030b2967412e17e26ae45d4e2 (patch) | |
tree | 57345e108da83f897ac0645227131827ca8e9a94 /chrome/browser/net/load_time_stats.h | |
parent | 32d5c972c673034657655def22e5a35b97f3561b (diff) | |
download | chromium_src-d37c33e7b1b74a2030b2967412e17e26ae45d4e2.zip chromium_src-d37c33e7b1b74a2030b2967412e17e26ae45d4e2.tar.gz chromium_src-d37c33e7b1b74a2030b2967412e17e26ae45d4e2.tar.bz2 |
When starting a provisional load include the parent frame ID in the IPC and pass it down the th WCObservers
This is the first half of the change, the second half will send the parent frame id with the webNavigation events
See RenderViewImpl::willSendRequest when it creates the RequestExtraData for a place where we already send the parent frame id (this is for the webRequest API that looks at network requests instead of navigation events)
BUG=128927
TEST=FrameNavigationState.*
Review URL: https://chromiumcodereview.appspot.com/11090068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161570 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/load_time_stats.h')
-rw-r--r-- | chrome/browser/net/load_time_stats.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/net/load_time_stats.h b/chrome/browser/net/load_time_stats.h index 829cafb..a39f721 100644 --- a/chrome/browser/net/load_time_stats.h +++ b/chrome/browser/net/load_time_stats.h @@ -128,6 +128,7 @@ class LoadTimeStatsTabHelper // content::WebContentsObserver implementation virtual void DidStartProvisionalLoadForFrame( int64 frame_id, + int64 parent_frame_id, bool is_main_frame, const GURL& validated_url, bool is_error_page, |