| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "core/loader/modulescript/ModuleTreeLinker.h" | 5 #include "core/loader/modulescript/ModuleTreeLinker.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScriptModule.h" | 7 #include "bindings/core/v8/ScriptModule.h" |
| 8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
| 9 #include "bindings/core/v8/V8Binding.h" | 9 #include "bindings/core/v8/V8BindingForCore.h" |
| 10 #include "bindings/core/v8/V8BindingForTesting.h" | 10 #include "bindings/core/v8/V8BindingForTesting.h" |
| 11 #include "bindings/core/v8/V8ThrowException.h" | 11 #include "bindings/core/v8/V8ThrowException.h" |
| 12 #include "core/dom/Modulator.h" | 12 #include "core/dom/Modulator.h" |
| 13 #include "core/dom/ModuleScript.h" | 13 #include "core/dom/ModuleScript.h" |
| 14 #include "core/loader/modulescript/ModuleScriptFetchRequest.h" | 14 #include "core/loader/modulescript/ModuleScriptFetchRequest.h" |
| 15 #include "core/loader/modulescript/ModuleTreeLinkerRegistry.h" | 15 #include "core/loader/modulescript/ModuleTreeLinkerRegistry.h" |
| 16 #include "core/testing/DummyModulator.h" | 16 #include "core/testing/DummyModulator.h" |
| 17 #include "core/testing/DummyPageHolder.h" | 17 #include "core/testing/DummyPageHolder.h" |
| 18 #include "platform/heap/Handle.h" | 18 #include "platform/heap/Handle.h" |
| 19 #include "platform/weborigin/KURL.h" | 19 #include "platform/weborigin/KURL.h" |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 GetModulator()->ResolveDependentTreeFetch( | 442 GetModulator()->ResolveDependentTreeFetch( |
| 443 url_dep2, ModuleTreeLinkerTestModulator::ResolveResult::kSuccess); | 443 url_dep2, ModuleTreeLinkerTestModulator::ResolveResult::kSuccess); |
| 444 | 444 |
| 445 EXPECT_TRUE(client->WasNotifyFinished()); | 445 EXPECT_TRUE(client->WasNotifyFinished()); |
| 446 ASSERT_TRUE(client->GetModuleScript()); | 446 ASSERT_TRUE(client->GetModuleScript()); |
| 447 EXPECT_EQ(client->GetModuleScript()->InstantiationState(), | 447 EXPECT_EQ(client->GetModuleScript()->InstantiationState(), |
| 448 ModuleInstantiationState::kInstantiated); | 448 ModuleInstantiationState::kInstantiated); |
| 449 } | 449 } |
| 450 | 450 |
| 451 } // namespace blink | 451 } // namespace blink |
| OLD | NEW |