| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
| 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 6 rights reserved. | 6 rights reserved. |
| 7 | 7 |
| 8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
| 9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
| 10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "core/fetch/CachedMetadataHandler.h" | 28 #include "core/fetch/CachedMetadataHandler.h" |
| 29 #include "core/fetch/ResourceLoaderOptions.h" | 29 #include "core/fetch/ResourceLoaderOptions.h" |
| 30 #include "platform/MemoryCoordinator.h" | 30 #include "platform/MemoryCoordinator.h" |
| 31 #include "platform/SharedBuffer.h" | 31 #include "platform/SharedBuffer.h" |
| 32 #include "platform/Timer.h" | 32 #include "platform/Timer.h" |
| 33 #include "platform/network/ResourceError.h" | 33 #include "platform/network/ResourceError.h" |
| 34 #include "platform/network/ResourceLoadPriority.h" | 34 #include "platform/network/ResourceLoadPriority.h" |
| 35 #include "platform/network/ResourceRequest.h" | 35 #include "platform/network/ResourceRequest.h" |
| 36 #include "platform/network/ResourceResponse.h" | 36 #include "platform/network/ResourceResponse.h" |
| 37 #include "platform/scheduler/CancellableTaskFactory.h" | 37 #include "platform/scheduler/CancellableTaskFactory.h" |
| 38 #include "platform/web_process_memory_dump.h" | 38 #include "platform/tracing/web_process_memory_dump.h" |
| 39 #include "public/platform/WebDataConsumerHandle.h" | 39 #include "public/platform/WebDataConsumerHandle.h" |
| 40 #include "wtf/Allocator.h" | 40 #include "wtf/Allocator.h" |
| 41 #include "wtf/HashCountedSet.h" | 41 #include "wtf/HashCountedSet.h" |
| 42 #include "wtf/HashSet.h" | 42 #include "wtf/HashSet.h" |
| 43 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 44 #include <memory> | 44 #include <memory> |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 struct FetchInitiatorInfo; | 48 struct FetchInitiatorInfo; |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 }; | 450 }; |
| 451 | 451 |
| 452 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 452 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 453 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ | 453 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ |
| 454 resource->getType() == Resource::typeName, \ | 454 resource->getType() == Resource::typeName, \ |
| 455 resource.getType() == Resource::typeName); | 455 resource.getType() == Resource::typeName); |
| 456 | 456 |
| 457 } // namespace blink | 457 } // namespace blink |
| 458 | 458 |
| 459 #endif | 459 #endif |
| OLD | NEW |