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

Side by Side Diff: third_party/WebKit/Source/core/loader/modulescript/ModuleScriptLoader.cpp

Issue 2815053002: Rewrite references to "wtf/" to "platform/wtf/" in core/loader. (Closed)
Patch Set: 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/loader/modulescript/ModuleScriptLoader.h" 5 #include "core/loader/modulescript/ModuleScriptLoader.h"
6 6
7 #include "core/dom/Modulator.h" 7 #include "core/dom/Modulator.h"
8 #include "core/dom/ModuleScript.h" 8 #include "core/dom/ModuleScript.h"
9 #include "core/loader/modulescript/ModuleScriptLoaderClient.h" 9 #include "core/loader/modulescript/ModuleScriptLoaderClient.h"
10 #include "core/loader/modulescript/ModuleScriptLoaderRegistry.h" 10 #include "core/loader/modulescript/ModuleScriptLoaderRegistry.h"
11 #include "platform/loader/fetch/FetchUtils.h" 11 #include "platform/loader/fetch/FetchUtils.h"
12 #include "platform/loader/fetch/ResourceFetcher.h" 12 #include "platform/loader/fetch/ResourceFetcher.h"
13 #include "platform/loader/fetch/ResourceLoadingLog.h" 13 #include "platform/loader/fetch/ResourceLoadingLog.h"
14 #include "platform/network/mime/MIMETypeRegistry.h" 14 #include "platform/network/mime/MIMETypeRegistry.h"
15 #include "platform/weborigin/SecurityPolicy.h" 15 #include "platform/weborigin/SecurityPolicy.h"
16 #include "wtf/text/AtomicString.h" 16 #include "platform/wtf/text/AtomicString.h"
17 17
18 namespace blink { 18 namespace blink {
19 19
20 ModuleScriptLoader::ModuleScriptLoader(Modulator* modulator, 20 ModuleScriptLoader::ModuleScriptLoader(Modulator* modulator,
21 ModuleScriptLoaderRegistry* registry, 21 ModuleScriptLoaderRegistry* registry,
22 ModuleScriptLoaderClient* client) 22 ModuleScriptLoaderClient* client)
23 : modulator_(modulator), registry_(registry), client_(client) { 23 : modulator_(modulator), registry_(registry), client_(client) {
24 DCHECK(modulator); 24 DCHECK(modulator);
25 DCHECK(registry); 25 DCHECK(registry);
26 DCHECK(client); 26 DCHECK(client);
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 250
251 DEFINE_TRACE(ModuleScriptLoader) { 251 DEFINE_TRACE(ModuleScriptLoader) {
252 visitor->Trace(modulator_); 252 visitor->Trace(modulator_);
253 visitor->Trace(module_script_); 253 visitor->Trace(module_script_);
254 visitor->Trace(registry_); 254 visitor->Trace(registry_);
255 visitor->Trace(client_); 255 visitor->Trace(client_);
256 ResourceOwner<ScriptResource>::Trace(visitor); 256 ResourceOwner<ScriptResource>::Trace(visitor);
257 } 257 }
258 258
259 } // namespace blink 259 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698