| 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 #include "bindings/core/v8/ScriptValue.h" | 7 #include "bindings/core/v8/ScriptValue.h" |
| 8 | 8 |
| 9 namespace blink { | 9 namespace blink { |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ScriptValue DummyModulator::InstantiateModule(ScriptModule) { | 75 ScriptValue DummyModulator::InstantiateModule(ScriptModule) { |
| 76 NOTREACHED(); | 76 NOTREACHED(); |
| 77 return ScriptValue(); | 77 return ScriptValue(); |
| 78 } | 78 } |
| 79 | 79 |
| 80 Vector<String> DummyModulator::ModuleRequestsFromScriptModule(ScriptModule) { | 80 Vector<String> DummyModulator::ModuleRequestsFromScriptModule(ScriptModule) { |
| 81 NOTREACHED(); | 81 NOTREACHED(); |
| 82 return Vector<String>(); | 82 return Vector<String>(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void DummyModulator::ExecuteModule(const ModuleScript*) { |
| 86 NOTREACHED(); |
| 87 } |
| 88 |
| 85 } // namespace blink | 89 } // namespace blink |
| OLD | NEW |