| 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 20 matching lines...) Expand all Loading... |
| 31 #include "platform/Timer.h" | 31 #include "platform/Timer.h" |
| 32 #include "platform/instrumentation/tracing/web_process_memory_dump.h" | 32 #include "platform/instrumentation/tracing/web_process_memory_dump.h" |
| 33 #include "platform/loader/fetch/CachedMetadataHandler.h" | 33 #include "platform/loader/fetch/CachedMetadataHandler.h" |
| 34 #include "platform/loader/fetch/IntegrityMetadata.h" | 34 #include "platform/loader/fetch/IntegrityMetadata.h" |
| 35 #include "platform/loader/fetch/ResourceError.h" | 35 #include "platform/loader/fetch/ResourceError.h" |
| 36 #include "platform/loader/fetch/ResourceLoadPriority.h" | 36 #include "platform/loader/fetch/ResourceLoadPriority.h" |
| 37 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 37 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 38 #include "platform/loader/fetch/ResourceRequest.h" | 38 #include "platform/loader/fetch/ResourceRequest.h" |
| 39 #include "platform/loader/fetch/ResourceResponse.h" | 39 #include "platform/loader/fetch/ResourceResponse.h" |
| 40 #include "platform/loader/fetch/ResourceStatus.h" | 40 #include "platform/loader/fetch/ResourceStatus.h" |
| 41 #include "platform/wtf/Allocator.h" |
| 42 #include "platform/wtf/AutoReset.h" |
| 43 #include "platform/wtf/HashCountedSet.h" |
| 44 #include "platform/wtf/HashSet.h" |
| 45 #include "platform/wtf/text/AtomicString.h" |
| 46 #include "platform/wtf/text/WTFString.h" |
| 41 #include "public/platform/WebDataConsumerHandle.h" | 47 #include "public/platform/WebDataConsumerHandle.h" |
| 42 #include "wtf/Allocator.h" | |
| 43 #include "wtf/AutoReset.h" | |
| 44 #include "wtf/HashCountedSet.h" | |
| 45 #include "wtf/HashSet.h" | |
| 46 #include "wtf/text/AtomicString.h" | |
| 47 #include "wtf/text/WTFString.h" | |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class FetchRequest; | 51 class FetchRequest; |
| 52 class ResourceClient; | 52 class ResourceClient; |
| 53 class ResourceFetcher; | 53 class ResourceFetcher; |
| 54 class ResourceTimingInfo; | 54 class ResourceTimingInfo; |
| 55 class ResourceLoader; | 55 class ResourceLoader; |
| 56 class SecurityOrigin; | 56 class SecurityOrigin; |
| 57 | 57 |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 }; | 500 }; |
| 501 | 501 |
| 502 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 502 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 503 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ | 503 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ |
| 504 resource->getType() == Resource::typeName, \ | 504 resource->getType() == Resource::typeName, \ |
| 505 resource.getType() == Resource::typeName); | 505 resource.getType() == Resource::typeName); |
| 506 | 506 |
| 507 } // namespace blink | 507 } // namespace blink |
| 508 | 508 |
| 509 #endif | 509 #endif |
| OLD | NEW |