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

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

Issue 2774843002: Pass AccessControlStatus to compileModule() (Closed)
Patch Set: const 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 namespace blink { 7 namespace blink {
8 8
9 DummyModulator::DummyModulator() {} 9 DummyModulator::DummyModulator() {}
10 10
(...skipping 23 matching lines...) Expand all
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/DummyModulator.h ('k') | third_party/WebKit/Source/platform/loader/fetch/Resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698