diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 15:26:12 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 15:26:12 +0000 |
commit | ed42bc2f22755d2864056cb03fc2ef17793ba9f0 (patch) | |
tree | 6178994bc105ef269c37ab9155e951271cde19aa /webkit/glue/webview_delegate.h | |
parent | 6a914a59965413063517489060131b1627e6fdff (diff) | |
download | chromium_src-ed42bc2f22755d2864056cb03fc2ef17793ba9f0.zip chromium_src-ed42bc2f22755d2864056cb03fc2ef17793ba9f0.tar.gz chromium_src-ed42bc2f22755d2864056cb03fc2ef17793ba9f0.tar.bz2 |
A recent change broke the load times. It also revealed some deficiencies.
This adds a new time marker for when a load is committed, which is
a more interesting value than the start of the load (which we still keep).
Also, the first layout time wasn't an interesting time to keep, instead
we keep the time of the first paint.
The histograms were modified to use the new values when appropriate.
Review URL: http://codereview.chromium.org/147123
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19361 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview_delegate.h')
-rw-r--r-- | webkit/glue/webview_delegate.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h index bd081c4..b7aff36 100644 --- a/webkit/glue/webview_delegate.h +++ b/webkit/glue/webview_delegate.h @@ -353,11 +353,6 @@ class WebViewDelegate : virtual public WebWidgetDelegate { virtual void DidFinishDocumentLoadForFrame(WebView* webview, WebFrame* frame) { } - // Called after layout runs for the first time after a new document is loaded - // into a frame. All resources have not necessarily finished loading. - virtual void DidFirstLayout(WebView* webview, WebFrame* frame) { - } - // This method is called when we load a resource from an in-memory cache. // A return value of |false| indicates the load should proceed, but WebCore // appears to largely ignore the return value. |