| Index: chrome/browser/prerender/prerender_contents.h
|
| ===================================================================
|
| --- chrome/browser/prerender/prerender_contents.h (revision 72357)
|
| +++ chrome/browser/prerender/prerender_contents.h (working copy)
|
| @@ -51,6 +51,7 @@
|
| }
|
| string16 title() const { return title_; }
|
| int32 page_id() const { return page_id_; }
|
| + bool has_stopped_loading() const { return has_stopped_loading_; }
|
|
|
| // Indicates whether this prerendered page can be used for the provided
|
| // URL, i.e. whether there is a match.
|
| @@ -75,6 +76,7 @@
|
| IPC::Message* reply_msg,
|
| bool* did_suppress_message);
|
| virtual void Close(RenderViewHost* render_view_host);
|
| + virtual void DidStopLoading();
|
| virtual RendererPreferences GetRendererPrefs(Profile* profile) const;
|
|
|
| // RenderViewHostDelegate::View
|
| @@ -184,6 +186,8 @@
|
| // such as HTTP redirects or javascript redirects.
|
| std::vector<GURL> alias_urls_;
|
|
|
| + bool has_stopped_loading_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(PrerenderContents);
|
| };
|
|
|
|
|