| 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/testing/DummyModulator.h" | 5 #include "core/testing/DummyModulator.h" |
| 6 | 6 |
| 7 namespace blink { | 7 namespace blink { |
| 8 | 8 |
| 9 DummyModulator::DummyModulator() {} | 9 DummyModulator::DummyModulator() {} |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 return nullptr; | 34 return nullptr; |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 void DummyModulator::fetchNewSingleModule(const ModuleScriptFetchRequest&, | 37 void DummyModulator::fetchNewSingleModule(const ModuleScriptFetchRequest&, |
| 38 ModuleGraphLevel, | 38 ModuleGraphLevel, |
| 39 ModuleScriptLoaderClient*) { | 39 ModuleScriptLoaderClient*) { |
| 40 NOTREACHED(); | 40 NOTREACHED(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 ScriptModule DummyModulator::compileModule(const String& script, | 43 ScriptModule DummyModulator::compileModule(const String& script, |
| 44 const String& urlStr) { | 44 const String& urlStr, |
| 45 AccessControlStatus) { |
| 45 NOTREACHED(); | 46 NOTREACHED(); |
| 46 return ScriptModule(); | 47 return ScriptModule(); |
| 47 } | 48 } |
| 48 | 49 |
| 49 } // namespace blink | 50 } // namespace blink |
| OLD | NEW |