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

Side by Side Diff: Source/core/inspector/InspectorResourceContentLoader.cpp

Issue 344483003: Remove gen/blink/core from build files since all includes have been qualified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix builds Created 6 years, 6 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
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/rendering/RenderThemeChromiumMac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/rendering/RenderThemeChromiumMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698