Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1129)

Side by Side Diff: third_party/WebKit/Source/core/testing/DummyModulator.cpp

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: rebased Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698