| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013, Intel Corporation | 3 * Copyright (C) 2013, Intel Corporation |
| 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "platform/SharedBuffer.h" | 50 #include "platform/SharedBuffer.h" |
| 51 #include "platform/loader/fetch/CrossOriginAccessControl.h" | 51 #include "platform/loader/fetch/CrossOriginAccessControl.h" |
| 52 #include "platform/loader/fetch/FetchRequest.h" | 52 #include "platform/loader/fetch/FetchRequest.h" |
| 53 #include "platform/loader/fetch/FetchUtils.h" | 53 #include "platform/loader/fetch/FetchUtils.h" |
| 54 #include "platform/loader/fetch/Resource.h" | 54 #include "platform/loader/fetch/Resource.h" |
| 55 #include "platform/loader/fetch/ResourceFetcher.h" | 55 #include "platform/loader/fetch/ResourceFetcher.h" |
| 56 #include "platform/loader/fetch/ResourceRequest.h" | 56 #include "platform/loader/fetch/ResourceRequest.h" |
| 57 #include "platform/weborigin/SchemeRegistry.h" | 57 #include "platform/weborigin/SchemeRegistry.h" |
| 58 #include "platform/weborigin/SecurityOrigin.h" | 58 #include "platform/weborigin/SecurityOrigin.h" |
| 59 #include "platform/weborigin/SecurityPolicy.h" | 59 #include "platform/weborigin/SecurityPolicy.h" |
| 60 #include "platform/wtf/Assertions.h" |
| 61 #include "platform/wtf/PtrUtil.h" |
| 62 #include "platform/wtf/WeakPtr.h" |
| 60 #include "public/platform/Platform.h" | 63 #include "public/platform/Platform.h" |
| 61 #include "public/platform/WebURLRequest.h" | 64 #include "public/platform/WebURLRequest.h" |
| 62 #include "wtf/Assertions.h" | |
| 63 #include "wtf/PtrUtil.h" | |
| 64 #include "wtf/WeakPtr.h" | |
| 65 | 65 |
| 66 namespace blink { | 66 namespace blink { |
| 67 | 67 |
| 68 namespace { | 68 namespace { |
| 69 | 69 |
| 70 class EmptyDataHandle final : public WebDataConsumerHandle { | 70 class EmptyDataHandle final : public WebDataConsumerHandle { |
| 71 private: | 71 private: |
| 72 class EmptyDataReader final : public WebDataConsumerHandle::Reader { | 72 class EmptyDataReader final : public WebDataConsumerHandle::Reader { |
| 73 public: | 73 public: |
| 74 explicit EmptyDataReader(WebDataConsumerHandle::Client* client) | 74 explicit EmptyDataReader(WebDataConsumerHandle::Client* client) |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 } | 1156 } |
| 1157 | 1157 |
| 1158 DEFINE_TRACE(DocumentThreadableLoader) { | 1158 DEFINE_TRACE(DocumentThreadableLoader) { |
| 1159 visitor->Trace(resource_); | 1159 visitor->Trace(resource_); |
| 1160 visitor->Trace(loading_context_); | 1160 visitor->Trace(loading_context_); |
| 1161 ThreadableLoader::Trace(visitor); | 1161 ThreadableLoader::Trace(visitor); |
| 1162 RawResourceClient::Trace(visitor); | 1162 RawResourceClient::Trace(visitor); |
| 1163 } | 1163 } |
| 1164 | 1164 |
| 1165 } // namespace blink | 1165 } // namespace blink |
| OLD | NEW |