| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/fetch/FetchFormDataConsumerHandle.h" | 5 #include "modules/fetch/FetchFormDataConsumerHandle.h" |
| 6 | 6 |
| 7 #include "modules/fetch/DataConsumerHandleUtil.h" | 7 #include "modules/fetch/DataConsumerHandleUtil.h" |
| 8 #include "modules/fetch/FetchBlobDataConsumerHandle.h" | 8 #include "modules/fetch/FetchBlobDataConsumerHandle.h" |
| 9 #include "wtf/ThreadSafeRefCounted.h" | |
| 10 #include "wtf/ThreadingPrimitives.h" | 9 #include "wtf/ThreadingPrimitives.h" |
| 11 #include "wtf/Vector.h" | 10 #include "wtf/Vector.h" |
| 12 #include "wtf/text/TextCodec.h" | 11 #include "wtf/text/TextCodec.h" |
| 13 #include "wtf/text/TextEncoding.h" | 12 #include "wtf/text/TextEncoding.h" |
| 14 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 15 | 14 |
| 16 #include <utility> | 15 #include <utility> |
| 17 | 16 |
| 18 namespace blink { | 17 namespace blink { |
| 19 | 18 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 } | 328 } |
| 330 } | 329 } |
| 331 FetchFormDataConsumerHandle::~FetchFormDataConsumerHandle() {} | 330 FetchFormDataConsumerHandle::~FetchFormDataConsumerHandle() {} |
| 332 | 331 |
| 333 FetchDataConsumerHandle::Reader* FetchFormDataConsumerHandle::obtainReaderIntern
al(Client* client) | 332 FetchDataConsumerHandle::Reader* FetchFormDataConsumerHandle::obtainReaderIntern
al(Client* client) |
| 334 { | 333 { |
| 335 return m_context->obtainReader(client).leakPtr(); | 334 return m_context->obtainReader(client).leakPtr(); |
| 336 } | 335 } |
| 337 | 336 |
| 338 } // namespace blink | 337 } // namespace blink |
| OLD | NEW |