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

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

Issue 9875026: **NOTFORLANDING** New link rel=prerender API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch sets 3-7 against trunk, for combined browsing Created 8 years, 8 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_link_manager_factory.h
diff --git a/chrome/browser/prerender/prerender_link_manager_factory.h b/chrome/browser/prerender/prerender_link_manager_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..5f5c9f79c9d2b2e44b3d65aaf2838a6179db7587
--- /dev/null
+++ b/chrome/browser/prerender/prerender_link_manager_factory.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_
+#define CHROME_BROWSER_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "base/memory/singleton.h"
+#include "chrome/browser/profiles/profile_keyed_service_factory.h"
+
+class Profile;
+
+namespace prerender {
+
+class PrerenderLinkManager;
+
+class PrerenderLinkManagerFactory : public ProfileKeyedServiceFactory {
+ public:
+ static PrerenderLinkManager* GetForProfile(Profile* profile);
+ static PrerenderLinkManagerFactory* GetInstance();
+
+ private:
+ friend struct DefaultSingletonTraits<PrerenderLinkManagerFactory>;
+
+ PrerenderLinkManagerFactory();
+ virtual ~PrerenderLinkManagerFactory() { }
+
+ virtual ProfileKeyedService* BuildServiceInstanceFor(
+ Profile* profile) const OVERRIDE;
+ virtual bool ServiceHasOwnInstanceInIncognito() OVERRIDE;
+};
+
+}
cbentzel 2012/04/24 15:42:59 Nit: // namespace prerender
gavinp 2012/04/26 23:55:39 Done.
+
+#endif // CHROME_BROWSER_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698