| 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 18 matching lines...) Expand all Loading... |
| 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" | 36 #include "core/fetch/ResourceClient.h" |
| 37 #include "core/fetch/ResourceOwner.h" | 37 #include "core/fetch/ResourceOwner.h" |
| 38 #include "core/loader/LinkLoaderClient.h" | 38 #include "core/loader/LinkLoaderClient.h" |
| 39 #include "core/loader/LinkPreloadResourceClients.h" | 39 #include "core/loader/resource/LinkPreloadResourceClients.h" |
| 40 #include "platform/CrossOriginAttributeValue.h" | 40 #include "platform/CrossOriginAttributeValue.h" |
| 41 #include "platform/PrerenderClient.h" | 41 #include "platform/PrerenderClient.h" |
| 42 #include "platform/Timer.h" | 42 #include "platform/Timer.h" |
| 43 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class Document; | 47 class Document; |
| 48 class LinkRelAttribute; | 48 class LinkRelAttribute; |
| 49 class NetworkHintsInterface; | 49 class NetworkHintsInterface; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 Timer<LinkLoader> m_linkLoadTimer; | 122 Timer<LinkLoader> m_linkLoadTimer; |
| 123 Timer<LinkLoader> m_linkLoadingErrorTimer; | 123 Timer<LinkLoader> m_linkLoadingErrorTimer; |
| 124 | 124 |
| 125 Member<PrerenderHandle> m_prerender; | 125 Member<PrerenderHandle> m_prerender; |
| 126 Member<LinkPreloadResourceClient> m_linkPreloadResourceClient; | 126 Member<LinkPreloadResourceClient> m_linkPreloadResourceClient; |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 } // namespace blink | 129 } // namespace blink |
| 130 | 130 |
| 131 #endif | 131 #endif |
| OLD | NEW |