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 19 matching lines...) Expand all Loading... |
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/loader/DocumentLoadTiming.h" | 36 #include "core/loader/DocumentLoadTiming.h" |
37 #include "core/loader/DocumentWriter.h" | 37 #include "core/loader/DocumentWriter.h" |
38 #include "core/loader/NavigationAction.h" | 38 #include "core/loader/NavigationAction.h" |
39 #include "core/loader/SubstituteData.h" | 39 #include "core/loader/SubstituteData.h" |
40 #include "core/platform/network/ResourceRequest.h" | |
41 #include "core/platform/network/ResourceResponse.h" | |
42 #include "platform/Timer.h" | 40 #include "platform/Timer.h" |
43 #include "platform/network/ResourceError.h" | 41 #include "platform/network/ResourceError.h" |
| 42 #include "platform/network/ResourceRequest.h" |
| 43 #include "platform/network/ResourceResponse.h" |
44 #include "wtf/HashSet.h" | 44 #include "wtf/HashSet.h" |
45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
46 | 46 |
47 namespace WTF { | 47 namespace WTF { |
48 class SchedulePair; | 48 class SchedulePair; |
49 } | 49 } |
50 | 50 |
51 namespace WebCore { | 51 namespace WebCore { |
52 class ApplicationCacheHost; | 52 class ApplicationCacheHost; |
53 class ArchiveResource; | 53 class ArchiveResource; |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 unsigned long m_identifierForLoadWithoutResourceLoader; | 254 unsigned long m_identifierForLoadWithoutResourceLoader; |
255 | 255 |
256 DocumentLoaderTimer m_dataLoadTimer; | 256 DocumentLoaderTimer m_dataLoadTimer; |
257 | 257 |
258 friend class ApplicationCacheHost; // for substitute resource delivery | 258 friend class ApplicationCacheHost; // for substitute resource delivery |
259 OwnPtr<ApplicationCacheHost> m_applicationCacheHost; | 259 OwnPtr<ApplicationCacheHost> m_applicationCacheHost; |
260 }; | 260 }; |
261 } | 261 } |
262 | 262 |
263 #endif // DocumentLoader_h | 263 #endif // DocumentLoader_h |
OLD | NEW |