| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 15 matching lines...) Expand all Loading... |
| 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 | 31 |
| 32 #ifndef LinkLoader_h | 32 #ifndef LinkLoader_h |
| 33 #define LinkLoader_h | 33 #define LinkLoader_h |
| 34 | 34 |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/fetch/ResourceClient.h" | |
| 37 #include "core/fetch/ResourceOwner.h" | |
| 38 #include "core/loader/LinkLoaderClient.h" | 36 #include "core/loader/LinkLoaderClient.h" |
| 39 #include "core/loader/resource/LinkPreloadResourceClients.h" | 37 #include "core/loader/resource/LinkPreloadResourceClients.h" |
| 40 #include "platform/CrossOriginAttributeValue.h" | 38 #include "platform/CrossOriginAttributeValue.h" |
| 41 #include "platform/PrerenderClient.h" | 39 #include "platform/PrerenderClient.h" |
| 42 #include "platform/Timer.h" | 40 #include "platform/Timer.h" |
| 43 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
| 42 #include "platform/loader/fetch/ResourceClient.h" |
| 43 #include "platform/loader/fetch/ResourceOwner.h" |
| 44 #include "wtf/Optional.h" | 44 #include "wtf/Optional.h" |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class Document; | 48 class Document; |
| 49 class LinkRelAttribute; | 49 class LinkRelAttribute; |
| 50 class NetworkHintsInterface; | 50 class NetworkHintsInterface; |
| 51 class PrerenderHandle; | 51 class PrerenderHandle; |
| 52 struct ViewportDescriptionWrapper; | 52 struct ViewportDescriptionWrapper; |
| 53 | 53 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 TaskRunnerTimer<LinkLoader> m_linkLoadTimer; | 119 TaskRunnerTimer<LinkLoader> m_linkLoadTimer; |
| 120 TaskRunnerTimer<LinkLoader> m_linkLoadingErrorTimer; | 120 TaskRunnerTimer<LinkLoader> m_linkLoadingErrorTimer; |
| 121 | 121 |
| 122 Member<PrerenderHandle> m_prerender; | 122 Member<PrerenderHandle> m_prerender; |
| 123 Member<LinkPreloadResourceClient> m_linkPreloadResourceClient; | 123 Member<LinkPreloadResourceClient> m_linkPreloadResourceClient; |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 } // namespace blink | 126 } // namespace blink |
| 127 | 127 |
| 128 #endif | 128 #endif |
| OLD | NEW |