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

Side by Side Diff: third_party/WebKit/Source/core/dom/ModuleMap.h

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (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 #ifndef ModuleMap_h 5 #ifndef ModuleMap_h
6 #define ModuleMap_h 6 #define ModuleMap_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/core/v8/TraceWrapperMember.h" 9 #include "bindings/core/v8/TraceWrapperMember.h"
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
11 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
12 #include "platform/weborigin/KURL.h" 12 #include "platform/weborigin/KURL.h"
13 #include "platform/weborigin/KURLHash.h" 13 #include "platform/weborigin/KURLHash.h"
14 #include "wtf/HashMap.h" 14 #include "platform/wtf/HashMap.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class Modulator; 18 class Modulator;
19 class ModuleScript; 19 class ModuleScript;
20 class ModuleScriptFetchRequest; 20 class ModuleScriptFetchRequest;
21 class SingleModuleClient; 21 class SingleModuleClient;
22 enum class ModuleGraphLevel; 22 enum class ModuleGraphLevel;
23 23
24 // A ModuleMap implements "module map" spec. 24 // A ModuleMap implements "module map" spec.
(...skipping 29 matching lines...) Expand all
54 54
55 // A module map is a map of absolute URLs to map entry. 55 // A module map is a map of absolute URLs to map entry.
56 MapImpl map_; 56 MapImpl map_;
57 57
58 Member<Modulator> modulator_; 58 Member<Modulator> modulator_;
59 }; 59 };
60 60
61 } // namespace blink 61 } // namespace blink
62 62
63 #endif 63 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Modulator.h ('k') | third_party/WebKit/Source/core/dom/MutationCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698