Chromium Code Reviews| Index: chrome/browser/prerender/prerender_tab_helper.h |
| =================================================================== |
| --- chrome/browser/prerender/prerender_tab_helper.h (revision 99462) |
| +++ chrome/browser/prerender/prerender_tab_helper.h (working copy) |
| @@ -27,24 +27,24 @@ |
| // TabContentsObserver implementation. |
| virtual void ProvisionalChangeToMainFrameUrl(const GURL& url, |
| bool has_opener_set) OVERRIDE; |
| - virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
| virtual void DidStopLoading() OVERRIDE; |
|
jam
2011/09/06 17:44:39
nit: no need for blank line
ananta
2011/09/06 18:42:20
Done.
|
| + virtual void DidStartProvisionalLoadForFrame( |
| + int64 frame_id, |
| + bool is_main_frame, |
| + const GURL& validated_url, |
| + bool is_error_page, |
| + RenderViewHost* render_view_host) OVERRIDE; |
| + |
| // Called when this prerendered TabContents has just been swapped in. |
| void PrerenderSwappedIn(); |
| + void UpdateTargetURL(int32 page_id, const GURL& url); |
| + |
| private: |
| // The data we store for a hover (time the hover occurred & URL). |
| class HoverData; |
| - // Message handler. |
| - void OnDidStartProvisionalLoadForFrame(int64 frame_id, |
| - bool main_frame, |
| - bool has_opener_set, |
| - const GURL& url); |
| - |
| - void OnMsgUpdateTargetURL(int32 page_id, const GURL& url); |
| - |
| // Retrieves the PrerenderManager, or NULL, if none was found. |
| PrerenderManager* MaybeGetPrerenderManager() const; |