| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/cachestorage/Cache.h" | 5 #include "modules/cachestorage/Cache.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
| 11 #include "bindings/core/v8/IDLTypes.h" | 11 #include "bindings/core/v8/IDLTypes.h" |
| 12 #include "bindings/core/v8/NativeValueTraitsImpl.h" | 12 #include "bindings/core/v8/NativeValueTraitsImpl.h" |
| 13 #include "bindings/core/v8/ScriptFunction.h" | 13 #include "bindings/core/v8/ScriptFunction.h" |
| 14 #include "bindings/core/v8/ScriptPromise.h" | 14 #include "bindings/core/v8/ScriptPromise.h" |
| 15 #include "bindings/core/v8/ScriptPromiseResolver.h" | 15 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 16 #include "bindings/core/v8/ScriptValue.h" | 16 #include "bindings/core/v8/ScriptValue.h" |
| 17 #include "bindings/core/v8/V8Binding.h" | 17 #include "bindings/core/v8/V8BindingForCore.h" |
| 18 #include "bindings/modules/v8/V8Request.h" | 18 #include "bindings/modules/v8/V8Request.h" |
| 19 #include "bindings/modules/v8/V8Response.h" | 19 #include "bindings/modules/v8/V8Response.h" |
| 20 #include "core/dom/Document.h" | 20 #include "core/dom/Document.h" |
| 21 #include "core/dom/ExecutionContext.h" | 21 #include "core/dom/ExecutionContext.h" |
| 22 #include "core/frame/Frame.h" | 22 #include "core/frame/Frame.h" |
| 23 #include "core/testing/DummyPageHolder.h" | 23 #include "core/testing/DummyPageHolder.h" |
| 24 #include "modules/fetch/BodyStreamBuffer.h" | 24 #include "modules/fetch/BodyStreamBuffer.h" |
| 25 #include "modules/fetch/FormDataBytesConsumer.h" | 25 #include "modules/fetch/FormDataBytesConsumer.h" |
| 26 #include "modules/fetch/GlobalFetch.h" | 26 #include "modules/fetch/GlobalFetch.h" |
| 27 #include "modules/fetch/Request.h" | 27 #include "modules/fetch/Request.h" |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 733 |
| 734 EXPECT_EQ(kNotImplementedString, GetRejectString(add_result)); | 734 EXPECT_EQ(kNotImplementedString, GetRejectString(add_result)); |
| 735 EXPECT_EQ(1, fetcher->FetchCount()); | 735 EXPECT_EQ(1, fetcher->FetchCount()); |
| 736 EXPECT_EQ("dispatchBatch", | 736 EXPECT_EQ("dispatchBatch", |
| 737 test_cache->GetAndClearLastErrorWebCacheMethodCalled()); | 737 test_cache->GetAndClearLastErrorWebCacheMethodCalled()); |
| 738 } | 738 } |
| 739 | 739 |
| 740 } // namespace | 740 } // namespace |
| 741 | 741 |
| 742 } // namespace blink | 742 } // namespace blink |
| OLD | NEW |