| 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 27 matching lines...) Expand all Loading... |
| 38 #include "core/frame/FrameTypes.h" | 38 #include "core/frame/FrameTypes.h" |
| 39 #include "core/frame/csp/ContentSecurityPolicy.h" | 39 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 40 #include "core/loader/DocumentLoadTiming.h" | 40 #include "core/loader/DocumentLoadTiming.h" |
| 41 #include "core/loader/DocumentWriter.h" | 41 #include "core/loader/DocumentWriter.h" |
| 42 #include "core/loader/FrameLoaderTypes.h" | 42 #include "core/loader/FrameLoaderTypes.h" |
| 43 #include "core/loader/LinkLoader.h" | 43 #include "core/loader/LinkLoader.h" |
| 44 #include "core/loader/NavigationPolicy.h" | 44 #include "core/loader/NavigationPolicy.h" |
| 45 #include "platform/SharedBuffer.h" | 45 #include "platform/SharedBuffer.h" |
| 46 #include "platform/loader/fetch/ClientHintsPreferences.h" | 46 #include "platform/loader/fetch/ClientHintsPreferences.h" |
| 47 #include "platform/loader/fetch/RawResource.h" | 47 #include "platform/loader/fetch/RawResource.h" |
| 48 #include "platform/loader/fetch/ResourceError.h" |
| 48 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 49 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 50 #include "platform/loader/fetch/ResourceRequest.h" |
| 51 #include "platform/loader/fetch/ResourceResponse.h" |
| 49 #include "platform/loader/fetch/SubstituteData.h" | 52 #include "platform/loader/fetch/SubstituteData.h" |
| 50 #include "platform/network/ResourceError.h" | |
| 51 #include "platform/network/ResourceRequest.h" | |
| 52 #include "platform/network/ResourceResponse.h" | |
| 53 #include "public/platform/WebLoadingBehaviorFlag.h" | 53 #include "public/platform/WebLoadingBehaviorFlag.h" |
| 54 #include "wtf/HashSet.h" | 54 #include "wtf/HashSet.h" |
| 55 #include "wtf/RefPtr.h" | 55 #include "wtf/RefPtr.h" |
| 56 | 56 |
| 57 #include <memory> | 57 #include <memory> |
| 58 | 58 |
| 59 namespace blink { | 59 namespace blink { |
| 60 | 60 |
| 61 class ApplicationCacheHost; | 61 class ApplicationCacheHost; |
| 62 class SubresourceFilter; | 62 class SubresourceFilter; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 // Used to protect against reentrancy into dataReceived(). | 324 // Used to protect against reentrancy into dataReceived(). |
| 325 bool m_inDataReceived; | 325 bool m_inDataReceived; |
| 326 RefPtr<SharedBuffer> m_dataBuffer; | 326 RefPtr<SharedBuffer> m_dataBuffer; |
| 327 }; | 327 }; |
| 328 | 328 |
| 329 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader); | 329 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader); |
| 330 | 330 |
| 331 } // namespace blink | 331 } // namespace blink |
| 332 | 332 |
| 333 #endif // DocumentLoader_h | 333 #endif // DocumentLoader_h |
| OLD | NEW |