| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2011 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef ResourceLoader_h | 29 #ifndef ResourceLoader_h |
| 30 #define ResourceLoader_h | 30 #define ResourceLoader_h |
| 31 | 31 |
| 32 #include <memory> | 32 #include <memory> |
| 33 #include "platform/PlatformExport.h" | 33 #include "platform/PlatformExport.h" |
| 34 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 34 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 35 #include "platform/loader/fetch/ResourceRequest.h" | 35 #include "platform/loader/fetch/ResourceRequest.h" |
| 36 #include "platform/wtf/Forward.h" |
| 36 #include "public/platform/WebURLLoader.h" | 37 #include "public/platform/WebURLLoader.h" |
| 37 #include "public/platform/WebURLLoaderClient.h" | 38 #include "public/platform/WebURLLoaderClient.h" |
| 38 #include "wtf/Forward.h" | |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class FetchContext; | 42 class FetchContext; |
| 43 class Resource; | 43 class Resource; |
| 44 class ResourceError; | 44 class ResourceError; |
| 45 class ResourceFetcher; | 45 class ResourceFetcher; |
| 46 | 46 |
| 47 // A ResourceLoader is created for each Resource by the ResourceFetcher when it | 47 // A ResourceLoader is created for each Resource by the ResourceFetcher when it |
| 48 // needs to load the specified resource. A ResourceLoader creates a | 48 // needs to load the specified resource. A ResourceLoader creates a |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 std::unique_ptr<WebURLLoader> m_loader; | 130 std::unique_ptr<WebURLLoader> m_loader; |
| 131 Member<ResourceFetcher> m_fetcher; | 131 Member<ResourceFetcher> m_fetcher; |
| 132 Member<Resource> m_resource; | 132 Member<Resource> m_resource; |
| 133 bool m_isCacheAwareLoadingActivated; | 133 bool m_isCacheAwareLoadingActivated; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace blink | 136 } // namespace blink |
| 137 | 137 |
| 138 #endif | 138 #endif |
| OLD | NEW |