| 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 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/inspector/InspectorResourceContentLoader.h" | 6 #include "core/inspector/InspectorResourceContentLoader.h" |
| 7 | 7 |
| 8 #include "FetchInitiatorTypeNames.h" | 8 #include "core/FetchInitiatorTypeNames.h" |
| 9 #include "core/css/CSSStyleSheet.h" | 9 #include "core/css/CSSStyleSheet.h" |
| 10 #include "core/css/StyleSheetContents.h" | 10 #include "core/css/StyleSheetContents.h" |
| 11 #include "core/fetch/CSSStyleSheetResource.h" | 11 #include "core/fetch/CSSStyleSheetResource.h" |
| 12 #include "core/fetch/Resource.h" | 12 #include "core/fetch/Resource.h" |
| 13 #include "core/fetch/ResourceFetcher.h" | 13 #include "core/fetch/ResourceFetcher.h" |
| 14 #include "core/fetch/ResourcePtr.h" | 14 #include "core/fetch/ResourcePtr.h" |
| 15 #include "core/fetch/StyleSheetResourceClient.h" | 15 #include "core/fetch/StyleSheetResourceClient.h" |
| 16 #include "core/frame/LocalFrame.h" | 16 #include "core/frame/LocalFrame.h" |
| 17 #include "core/html/VoidCallback.h" | 17 #include "core/html/VoidCallback.h" |
| 18 #include "core/inspector/InspectorCSSAgent.h" | 18 #include "core/inspector/InspectorCSSAgent.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 (*it)->handleEvent(); | 125 (*it)->handleEvent(); |
| 126 } | 126 } |
| 127 | 127 |
| 128 void InspectorResourceContentLoader::resourceFinished(ResourceClient* client) | 128 void InspectorResourceContentLoader::resourceFinished(ResourceClient* client) |
| 129 { | 129 { |
| 130 m_pendingResourceClients.remove(client); | 130 m_pendingResourceClients.remove(client); |
| 131 checkDone(); | 131 checkDone(); |
| 132 } | 132 } |
| 133 | 133 |
| 134 } // namespace WebCore | 134 } // namespace WebCore |
| OLD | NEW |