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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 InspectorResourceContentLoader_h 5 #ifndef InspectorResourceContentLoader_h
6 #define InspectorResourceContentLoader_h 6 #define InspectorResourceContentLoader_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/fetch/Resource.h" 9 #include "platform/loader/fetch/Resource.h"
10 #include "wtf/Functional.h" 10 #include "wtf/Functional.h"
11 #include "wtf/HashMap.h" 11 #include "wtf/HashMap.h"
12 #include "wtf/HashSet.h" 12 #include "wtf/HashSet.h"
13 #include "wtf/Noncopyable.h" 13 #include "wtf/Noncopyable.h"
14 #include "wtf/Vector.h" 14 #include "wtf/Vector.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class LocalFrame; 18 class LocalFrame;
19 class Resource; 19 class Resource;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 HeapHashSet<Member<ResourceClient>> m_pendingResourceClients; 54 HeapHashSet<Member<ResourceClient>> m_pendingResourceClients;
55 HeapVector<Member<Resource>> m_resources; 55 HeapVector<Member<Resource>> m_resources;
56 int m_lastClientId; 56 int m_lastClientId;
57 57
58 friend class ResourceClient; 58 friend class ResourceClient;
59 }; 59 };
60 60
61 } // namespace blink 61 } // namespace blink
62 62
63 #endif // !defined(InspectorResourceContentLoader_h) 63 #endif // !defined(InspectorResourceContentLoader_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698