| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef LinkImport_h | 31 #ifndef LinkImport_h |
| 32 #define LinkImport_h | 32 #define LinkImport_h |
| 33 | 33 |
| 34 #include "core/html/HTMLImportLoaderClient.h" |
| 34 #include "core/html/LinkResource.h" | 35 #include "core/html/LinkResource.h" |
| 35 #include "wtf/FastAllocBase.h" | 36 #include "wtf/FastAllocBase.h" |
| 36 #include "wtf/RefPtr.h" | 37 #include "wtf/RefPtr.h" |
| 37 | 38 |
| 38 namespace WebCore { | 39 namespace WebCore { |
| 39 | 40 |
| 40 class Document; | 41 class Document; |
| 41 class HTMLImportLoader; | 42 class HTMLImportLoader; |
| 42 | 43 |
| 43 // | 44 // |
| 44 // A LinkResource subclasss used for @rel=import. | 45 // A LinkResource subclasss used for @rel=import. |
| 45 // | 46 // |
| 46 class LinkImport : public LinkResource { | 47 class LinkImport : public LinkResource, public HTMLImportLoaderClient { |
| 47 WTF_MAKE_FAST_ALLOCATED; | 48 WTF_MAKE_FAST_ALLOCATED; |
| 48 public: | 49 public: |
| 49 | 50 |
| 50 static PassRefPtr<LinkImport> create(HTMLLinkElement* owner); | 51 static PassRefPtr<LinkImport> create(HTMLLinkElement* owner); |
| 51 | 52 |
| 52 explicit LinkImport(HTMLLinkElement* owner); | 53 explicit LinkImport(HTMLLinkElement* owner); |
| 53 virtual ~LinkImport(); | 54 virtual ~LinkImport(); |
| 54 | 55 |
| 55 // LinkResource | 56 // LinkResource |
| 56 virtual void process() OVERRIDE; | 57 virtual void process() OVERRIDE; |
| 57 virtual Type type() const OVERRIDE { return Import; } | 58 virtual Type type() const OVERRIDE { return Import; } |
| 58 virtual void ownerRemoved() OVERRIDE; | 59 virtual void ownerRemoved() OVERRIDE; |
| 60 virtual bool hasLoaded() const OVERRIDE; |
| 61 |
| 62 // HTMLImportLoaderClient |
| 63 virtual void didFinish() OVERRIDE; |
| 59 | 64 |
| 60 Document* importedDocument() const; | 65 Document* importedDocument() const; |
| 61 | 66 |
| 62 private: | 67 private: |
| 68 void clear(); |
| 69 |
| 63 RefPtr<HTMLImportLoader> m_loader; | 70 RefPtr<HTMLImportLoader> m_loader; |
| 64 }; | 71 }; |
| 65 | 72 |
| 66 } // namespace WebCore | 73 } // namespace WebCore |
| 67 | 74 |
| 68 #endif // LinkImport_h | 75 #endif // LinkImport_h |
| OLD | NEW |