OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 15 matching lines...) Expand all Loading... |
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #ifndef DocumentLoader_h | 30 #ifndef DocumentLoader_h |
31 #define DocumentLoader_h | 31 #define DocumentLoader_h |
32 | 32 |
33 #include "core/fetch/RawResource.h" | 33 #include "core/fetch/RawResource.h" |
34 #include "core/fetch/ResourceLoaderOptions.h" | 34 #include "core/fetch/ResourceLoaderOptions.h" |
35 #include "core/fetch/ResourcePtr.h" | 35 #include "core/fetch/ResourcePtr.h" |
| 36 #include "core/fetch/SubstituteData.h" |
36 #include "core/frame/csp/ContentSecurityPolicy.h" | 37 #include "core/frame/csp/ContentSecurityPolicy.h" |
37 #include "core/loader/DocumentLoadTiming.h" | 38 #include "core/loader/DocumentLoadTiming.h" |
38 #include "core/loader/DocumentWriter.h" | 39 #include "core/loader/DocumentWriter.h" |
39 #include "core/loader/FrameLoaderTypes.h" | 40 #include "core/loader/FrameLoaderTypes.h" |
40 #include "core/loader/NavigationPolicy.h" | 41 #include "core/loader/NavigationPolicy.h" |
41 #include "core/loader/SubstituteData.h" | |
42 #include "platform/network/ResourceError.h" | 42 #include "platform/network/ResourceError.h" |
43 #include "platform/network/ResourceRequest.h" | 43 #include "platform/network/ResourceRequest.h" |
44 #include "platform/network/ResourceResponse.h" | 44 #include "platform/network/ResourceResponse.h" |
45 #include "wtf/HashSet.h" | 45 #include "wtf/HashSet.h" |
46 #include "wtf/RefPtr.h" | 46 #include "wtf/RefPtr.h" |
47 | 47 |
48 namespace blink { | 48 namespace blink { |
49 class ApplicationCacheHost; | 49 class ApplicationCacheHost; |
50 class ArchiveResourceCollection; | 50 class ArchiveResourceCollection; |
51 class ResourceFetcher; | 51 class ResourceFetcher; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 double m_timeOfLastDataReceived; | 205 double m_timeOfLastDataReceived; |
206 | 206 |
207 friend class ApplicationCacheHost; // for substitute resource delivery | 207 friend class ApplicationCacheHost; // for substitute resource delivery |
208 OwnPtrWillBePersistent<ApplicationCacheHost> m_applicationCacheHost; | 208 OwnPtrWillBePersistent<ApplicationCacheHost> m_applicationCacheHost; |
209 | 209 |
210 RefPtr<ContentSecurityPolicy> m_contentSecurityPolicy; | 210 RefPtr<ContentSecurityPolicy> m_contentSecurityPolicy; |
211 }; | 211 }; |
212 } | 212 } |
213 | 213 |
214 #endif // DocumentLoader_h | 214 #endif // DocumentLoader_h |
OLD | NEW |