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

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

Issue 2799323002: [local; kouhei 2] kouhei's giant CL https://codereview.chromium.org/2555653002 (Closed)
Patch Set: Rebase 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
« no previous file with comments | « third_party/WebKit/Source/core/testing/DummyModulator.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 18 matching lines...) Expand all
29 ScriptModuleResolver* DummyModulator::GetScriptModuleResolver() { 29 ScriptModuleResolver* DummyModulator::GetScriptModuleResolver() {
30 NOTREACHED(); 30 NOTREACHED();
31 return nullptr; 31 return nullptr;
32 } 32 }
33 33
34 WebTaskRunner* DummyModulator::TaskRunner() { 34 WebTaskRunner* DummyModulator::TaskRunner() {
35 NOTREACHED(); 35 NOTREACHED();
36 return nullptr; 36 return nullptr;
37 }; 37 };
38 38
39 void DummyModulator::FetchTree(const ModuleScriptFetchRequest&,
40 ModuleTreeClient*) {
41 NOTREACHED();
42 }
43
44 void DummyModulator::FetchTreeInternal(const ModuleScriptFetchRequest&,
45 const AncestorList&,
46 ModuleGraphLevel,
47 ModuleTreeClient*) {
48 NOTREACHED();
49 };
50
51 void DummyModulator::FetchSingle(const ModuleScriptFetchRequest&,
52 ModuleGraphLevel,
53 SingleModuleClient*) {
54 NOTREACHED();
55 }
56
39 ModuleScript* DummyModulator::GetFetchedModuleScript(const KURL&) { 57 ModuleScript* DummyModulator::GetFetchedModuleScript(const KURL&) {
40 NOTREACHED(); 58 NOTREACHED();
41 return nullptr; 59 return nullptr;
42 } 60 }
43 61
44 void DummyModulator::FetchNewSingleModule(const ModuleScriptFetchRequest&, 62 void DummyModulator::FetchNewSingleModule(const ModuleScriptFetchRequest&,
45 ModuleGraphLevel, 63 ModuleGraphLevel,
46 ModuleScriptLoaderClient*) { 64 ModuleScriptLoaderClient*) {
47 NOTREACHED(); 65 NOTREACHED();
48 } 66 }
(...skipping 13 matching lines...) Expand all
62 Vector<String> DummyModulator::ModuleRequestsFromScriptModule(ScriptModule) { 80 Vector<String> DummyModulator::ModuleRequestsFromScriptModule(ScriptModule) {
63 NOTREACHED(); 81 NOTREACHED();
64 return Vector<String>(); 82 return Vector<String>();
65 } 83 }
66 84
67 void DummyModulator::ExecuteModule(ScriptModule) { 85 void DummyModulator::ExecuteModule(ScriptModule) {
68 NOTREACHED(); 86 NOTREACHED();
69 } 87 }
70 88
71 } // namespace blink 89 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/DummyModulator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698