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

Unified Diff: chrome/browser/prerender/prerender_manager.h

Issue 9416031: Prerendered pages are swapped in at browser::Navigate time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cleanup Created 8 years, 10 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/prerender/prerender_manager.h
diff --git a/chrome/browser/prerender/prerender_manager.h b/chrome/browser/prerender/prerender_manager.h
index 516cffe56c1741f92307b9736ac0b782ab762229..0a37d62d58687246ab3f18527b10fe87980e6877 100644
--- a/chrome/browser/prerender/prerender_manager.h
+++ b/chrome/browser/prerender/prerender_manager.h
@@ -126,13 +126,10 @@ class PrerenderManager : public base::SupportsWeakPtr<PrerenderManager>,
// For a given WebContents that wants to navigate to the URL supplied,
// determines whether a prerendered version of the URL can be used,
- // and substitutes the prerendered RVH into the WebContents. |opener_url| is
- // set to the window.opener url that the WebContents should have set and
- // will be empty if there is no opener set. Returns whether or not a
- // prerendered RVH could be used or not.
+ // and substitutes the prerendered RVH into the WebContents. If a prerendered
+ // page can't be swapped in, NULL is returned.
dominich 2012/02/28 16:21:00 NULL -> false
bool MaybeUsePrerenderedPage(content::WebContents* web_contents,
- const GURL& url,
- const GURL& opener_url);
+ const GURL& url);
// Moves a PrerenderContents to the pending delete list from the list of
// active prerenders when prerendering should be cancelled.

Powered by Google App Engine
This is Rietveld 408576698