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

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

Issue 10198040: New link rel=prerender api, using WebKit::WebPrerenderingPlatform (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 80 columns Created 8 years, 7 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
« no previous file with comments | « chrome/browser/prerender/prerender_browsertest.cc ('k') | chrome/browser/prerender/prerender_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prerender/prerender_contents.h
diff --git a/chrome/browser/prerender/prerender_contents.h b/chrome/browser/prerender/prerender_contents.h
index 854c55d2600fc24cfca3635990acc9a9509357f2..dfce05bdc7332310a0be294fb2e135a2e79a8e19 100644
--- a/chrome/browser/prerender/prerender_contents.h
+++ b/chrome/browser/prerender/prerender_contents.h
@@ -8,6 +8,7 @@
#include <list>
#include <string>
+#include <utility>
#include <vector>
#include "base/memory/scoped_ptr.h"
@@ -18,6 +19,7 @@
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/common/referrer.h"
+#include "ui/gfx/size.h"
class Profile;
class TabContentsWrapper;
@@ -66,16 +68,8 @@ class PrerenderContents : public content::NotificationObserver,
};
// Information on pages that the prerendered page has tried to prerender.
- struct PendingPrerenderData {
- PendingPrerenderData(Origin origin,
- const GURL& url,
- const content::Referrer& referrer);
-
- Origin origin;
- GURL url;
- content::Referrer referrer;
- };
- typedef std::list<PendingPrerenderData> PendingPrerenderList;
+ struct PendingPrerenderInfo;
+ typedef std::list<PendingPrerenderInfo> PendingPrerenderList;
// Indicates how this PrerenderContents relates to MatchComplete.
// This is important to figure out in what histograms to record the
@@ -103,7 +97,8 @@ class PrerenderContents : public content::NotificationObserver,
// |source_render_view_host| is the RenderViewHost that initiated
// prerendering.
virtual void StartPrerendering(
- const content::RenderViewHost* source_render_view_host,
+ int creator_child_id,
+ const gfx::Size& size,
content::SessionStorageNamespace* session_storage_namespace);
// Verifies that the prerendering is not using too many resources, and kills
@@ -150,6 +145,8 @@ class PrerenderContents : public content::NotificationObserver,
// Indicates whether this prerendered page can be used for the provided
// URL, i.e. whether there is a match. |matching_url| is optional and will be
// set to the URL that is found as a match if it is provided.
+ // TODO(gavinp,mmenke): Rework matching to be based on both the URL
+ // and the session WebStorage.
bool MatchesURL(const GURL& url, GURL* matching_url) const;
void OnJSOutOfMemory();
@@ -206,9 +203,9 @@ class PrerenderContents : public content::NotificationObserver,
bool IsCrossSiteNavigationPending() const;
// Adds a pending prerender to the list.
- virtual void AddPendingPrerender(Origin origin,
- const GURL& url,
- const content::Referrer& referrer);
+ virtual void AddPendingPrerender(const GURL& url,
+ const content::Referrer& referrer,
+ const gfx::Size& size);
// Returns true if |url| corresponds to a pending prerender.
bool IsPendingEntry(const GURL& url) const;
@@ -239,6 +236,10 @@ class PrerenderContents : public content::NotificationObserver,
return &pending_prerender_list_;
}
+ bool prerendering_has_been_cancelled() const {
+ return prerendering_has_been_cancelled_;
+ }
+
virtual content::WebContents* CreateWebContents(
content::SessionStorageNamespace* session_storage_namespace);
@@ -342,6 +343,9 @@ class PrerenderContents : public content::NotificationObserver,
// The process that created the child id.
int creator_child_id_;
+ // The size of the WebView from the launching page.
+ gfx::Size size_;
+
DISALLOW_COPY_AND_ASSIGN(PrerenderContents);
};
« no previous file with comments | « chrome/browser/prerender/prerender_browsertest.cc ('k') | chrome/browser/prerender/prerender_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698