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

Unified Diff: Source/core/html/HTMLImportsController.h

Issue 17419007: [HTML Imports] Implement sub-imports processing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated to ToT. Created 7 years, 6 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 | « Source/core/dom/Document.cpp ('k') | Source/core/html/HTMLImportsController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLImportsController.h
diff --git a/Source/core/html/HTMLImportsController.h b/Source/core/html/HTMLImportsController.h
index a23f6ebe913c780b067600455f4fcc32abc1dc7c..fd1ecc3cd23ced63ea650a2bba341f03724303ab 100644
--- a/Source/core/html/HTMLImportsController.h
+++ b/Source/core/html/HTMLImportsController.h
@@ -40,6 +40,7 @@
namespace WebCore {
+class CachedResourceLoader;
class HTMLImportLoader;
class HTMLImportsController;
@@ -101,10 +102,10 @@ private:
};
-class HTMLImportsController {
+class HTMLImportsController : public RefCounted<HTMLImportsController> {
WTF_MAKE_FAST_ALLOCATED;
public:
- static PassOwnPtr<HTMLImportsController> create(Document*);
+ static PassRefPtr<HTMLImportsController> create(Document*);
explicit HTMLImportsController(Document*);
virtual ~HTMLImportsController();
@@ -113,6 +114,7 @@ public:
void showSecurityErrorMessage(const String&);
PassRefPtr<HTMLImportLoader> findLinkFor(const KURL&) const;
SecurityOrigin* securityOrigin() const;
+ CachedResourceLoader* cachedResourceLoader() const;
bool haveLoaded() const;
void didLoad();
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/html/HTMLImportsController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698