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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp

Issue 2504883003: Loading: move *StyleSheetResource to core/loader/resource (Closed)
Patch Set: [rebase] Created 4 years 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #include "core/inspector/InspectorPageAgent.h" 31 #include "core/inspector/InspectorPageAgent.h"
32 32
33 #include "bindings/core/v8/DOMWrapperWorld.h" 33 #include "bindings/core/v8/DOMWrapperWorld.h"
34 #include "bindings/core/v8/ScriptController.h" 34 #include "bindings/core/v8/ScriptController.h"
35 #include "bindings/core/v8/ScriptRegexp.h" 35 #include "bindings/core/v8/ScriptRegexp.h"
36 #include "core/HTMLNames.h" 36 #include "core/HTMLNames.h"
37 #include "core/dom/DOMImplementation.h" 37 #include "core/dom/DOMImplementation.h"
38 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
39 #include "core/fetch/CSSStyleSheetResource.h"
40 #include "core/fetch/ImageResource.h" 39 #include "core/fetch/ImageResource.h"
41 #include "core/fetch/MemoryCache.h" 40 #include "core/fetch/MemoryCache.h"
42 #include "core/fetch/Resource.h" 41 #include "core/fetch/Resource.h"
43 #include "core/fetch/ResourceFetcher.h" 42 #include "core/fetch/ResourceFetcher.h"
44 #include "core/frame/FrameHost.h" 43 #include "core/frame/FrameHost.h"
45 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
46 #include "core/frame/LocalFrame.h" 45 #include "core/frame/LocalFrame.h"
47 #include "core/frame/Settings.h" 46 #include "core/frame/Settings.h"
48 #include "core/frame/VisualViewport.h" 47 #include "core/frame/VisualViewport.h"
49 #include "core/html/HTMLFrameOwnerElement.h" 48 #include "core/html/HTMLFrameOwnerElement.h"
50 #include "core/html/VoidCallback.h" 49 #include "core/html/VoidCallback.h"
51 #include "core/html/imports/HTMLImportLoader.h" 50 #include "core/html/imports/HTMLImportLoader.h"
52 #include "core/html/imports/HTMLImportsController.h" 51 #include "core/html/imports/HTMLImportsController.h"
53 #include "core/html/parser/TextResourceDecoder.h" 52 #include "core/html/parser/TextResourceDecoder.h"
54 #include "core/inspector/DOMPatchSupport.h" 53 #include "core/inspector/DOMPatchSupport.h"
55 #include "core/inspector/IdentifiersFactory.h" 54 #include "core/inspector/IdentifiersFactory.h"
56 #include "core/inspector/InspectedFrames.h" 55 #include "core/inspector/InspectedFrames.h"
57 #include "core/inspector/InspectorCSSAgent.h" 56 #include "core/inspector/InspectorCSSAgent.h"
58 #include "core/inspector/InspectorInstrumentation.h" 57 #include "core/inspector/InspectorInstrumentation.h"
59 #include "core/inspector/InspectorResourceContentLoader.h" 58 #include "core/inspector/InspectorResourceContentLoader.h"
60 #include "core/inspector/V8InspectorString.h" 59 #include "core/inspector/V8InspectorString.h"
61 #include "core/loader/DocumentLoader.h" 60 #include "core/loader/DocumentLoader.h"
62 #include "core/loader/FrameLoader.h" 61 #include "core/loader/FrameLoader.h"
62 #include "core/loader/resource/CSSStyleSheetResource.h"
63 #include "core/loader/resource/FontResource.h" 63 #include "core/loader/resource/FontResource.h"
64 #include "core/loader/resource/ScriptResource.h" 64 #include "core/loader/resource/ScriptResource.h"
65 #include "platform/MIMETypeRegistry.h" 65 #include "platform/MIMETypeRegistry.h"
66 #include "platform/PlatformResourceLoader.h" 66 #include "platform/PlatformResourceLoader.h"
67 #include "platform/UserGestureIndicator.h" 67 #include "platform/UserGestureIndicator.h"
68 #include "platform/weborigin/SecurityOrigin.h" 68 #include "platform/weborigin/SecurityOrigin.h"
69 #include "wtf/CurrentTime.h" 69 #include "wtf/CurrentTime.h"
70 #include "wtf/ListHashSet.h" 70 #include "wtf/ListHashSet.h"
71 #include "wtf/Vector.h" 71 #include "wtf/Vector.h"
72 #include "wtf/text/Base64.h" 72 #include "wtf/text/Base64.h"
(...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 return Response::OK(); 885 return Response::OK();
886 } 886 }
887 887
888 DEFINE_TRACE(InspectorPageAgent) { 888 DEFINE_TRACE(InspectorPageAgent) {
889 visitor->trace(m_inspectedFrames); 889 visitor->trace(m_inspectedFrames);
890 visitor->trace(m_inspectorResourceContentLoader); 890 visitor->trace(m_inspectorResourceContentLoader);
891 InspectorBaseAgent::trace(visitor); 891 InspectorBaseAgent::trace(visitor);
892 } 892 }
893 893
894 } // namespace blink 894 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698