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

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

Issue 5912001: Add PrerenderResourceHandler and hook it into the ResourceDispatcherHost.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove extra comment. Created 10 years 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 045581cbc63c4ee35b6089afe56336290a041199..57141c184d6c3837ac3bc865559b182416c0c1c0 100644
--- a/chrome/browser/prerender/prerender_manager.h
+++ b/chrome/browser/prerender/prerender_manager.h
@@ -9,6 +9,7 @@
#include <list>
#include "base/non_thread_safe.h"
+#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/time.h"
#include "googleurl/src/gurl.h"
@@ -19,7 +20,8 @@ class TabContents;
// PrerenderManager is responsible for initiating and keeping prerendered
// views of webpages.
-class PrerenderManager : NonThreadSafe {
+class PrerenderManager : public base::RefCounted<PrerenderManager>,
willchan no longer on Chromium 2010/12/17 21:45:17 Add a TODO(willchan): to remove the refcounting.
cbentzel 2010/12/19 00:40:56 Yes. I didn't want to make it refcounted.
cbentzel 2010/12/19 00:40:56 I put the TODO in ChromeURLRequestContext, which s
+ private NonThreadSafe {
willchan no longer on Chromium 2010/12/17 21:45:17 Please avoid private inheritance: http://www.paras
cbentzel 2010/12/19 00:40:56 I can, but this seems like a perfect example of wh
public:
// Owned by a Profile object for the lifetime of the profile.
explicit PrerenderManager(Profile* profile);
@@ -56,6 +58,8 @@ class PrerenderManager : NonThreadSafe {
virtual PrerenderContents* CreatePrerenderContents(const GURL& url);
private:
+ friend class base::RefCounted<PrerenderManager>;
+
struct PrerenderContentsData;
bool IsPrerenderElementFresh(const base::Time start) const;

Powered by Google App Engine
This is Rietveld 408576698