| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/ResourceError.h" |
| 49 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 49 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 50 #include "platform/loader/fetch/ResourceRequest.h" | 50 #include "platform/loader/fetch/ResourceRequest.h" |
| 51 #include "platform/loader/fetch/ResourceResponse.h" | 51 #include "platform/loader/fetch/ResourceResponse.h" |
| 52 #include "platform/loader/fetch/SubstituteData.h" | 52 #include "platform/loader/fetch/SubstituteData.h" |
| 53 #include "platform/wtf/HashSet.h" |
| 54 #include "platform/wtf/RefPtr.h" |
| 53 #include "public/platform/WebLoadingBehaviorFlag.h" | 55 #include "public/platform/WebLoadingBehaviorFlag.h" |
| 54 #include "wtf/HashSet.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; |
| 63 class ResourceFetcher; | 63 class ResourceFetcher; |
| 64 class DocumentInit; | 64 class DocumentInit; |
| 65 class HistoryItem; | 65 class HistoryItem; |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 // Used to protect against reentrancy into dataReceived(). | 347 // Used to protect against reentrancy into dataReceived(). |
| 348 bool in_data_received_; | 348 bool in_data_received_; |
| 349 RefPtr<SharedBuffer> data_buffer_; | 349 RefPtr<SharedBuffer> data_buffer_; |
| 350 }; | 350 }; |
| 351 | 351 |
| 352 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader); | 352 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader); |
| 353 | 353 |
| 354 } // namespace blink | 354 } // namespace blink |
| 355 | 355 |
| 356 #endif // DocumentLoader_h | 356 #endif // DocumentLoader_h |
| OLD | NEW |