| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |