| 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/DataConsumerHandleTestUtil.h" | 5 #include "modules/fetch/DataConsumerHandleTestUtil.h" |
| 6 | 6 |
| 7 #include <memory> |
| 7 #include "bindings/core/v8/DOMWrapperWorld.h" | 8 #include "bindings/core/v8/DOMWrapperWorld.h" |
| 8 #include "public/platform/WebScheduler.h" | 9 #include "public/platform/WebScheduler.h" |
| 9 #include "wtf/PtrUtil.h" | 10 #include "wtf/PtrUtil.h" |
| 10 #include <memory> | |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 using Result = WebDataConsumerHandle::Result; | 14 using Result = WebDataConsumerHandle::Result; |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 class WaitingHandle final : public WebDataConsumerHandle { | 18 class WaitingHandle final : public WebDataConsumerHandle { |
| 19 private: | 19 private: |
| 20 class ReaderImpl final : public WebDataConsumerHandle::Reader { | 20 class ReaderImpl final : public WebDataConsumerHandle::Reader { |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 std::move(m_onFinishedReading)); | 334 std::move(m_onFinishedReading)); |
| 335 (*onFinishedReading)(std::move(result)); | 335 (*onFinishedReading)(std::move(result)); |
| 336 } | 336 } |
| 337 | 337 |
| 338 std::unique_ptr<WebDataConsumerHandle> | 338 std::unique_ptr<WebDataConsumerHandle> |
| 339 DataConsumerHandleTestUtil::createWaitingDataConsumerHandle() { | 339 DataConsumerHandleTestUtil::createWaitingDataConsumerHandle() { |
| 340 return WTF::wrapUnique(new WaitingHandle); | 340 return WTF::wrapUnique(new WaitingHandle); |
| 341 } | 341 } |
| 342 | 342 |
| 343 } // namespace blink | 343 } // namespace blink |
| OLD | NEW |