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

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

Issue 15942008: Remove unused includes from core/inspector and core/svg .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 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
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/inspector/InspectorValues.h" 43 #include "core/inspector/InspectorValues.h"
44 #include "core/inspector/InstrumentingAgents.h" 44 #include "core/inspector/InstrumentingAgents.h"
45 #include "core/inspector/NetworkResourcesData.h" 45 #include "core/inspector/NetworkResourcesData.h"
46 #include "core/inspector/ScriptCallStack.h" 46 #include "core/inspector/ScriptCallStack.h"
47 #include "core/loader/DocumentLoader.h" 47 #include "core/loader/DocumentLoader.h"
48 #include "core/loader/FrameLoader.h" 48 #include "core/loader/FrameLoader.h"
49 #include "core/loader/ResourceLoader.h" 49 #include "core/loader/ResourceLoader.h"
50 #include "core/loader/UniqueIdentifier.h" 50 #include "core/loader/UniqueIdentifier.h"
51 #include "core/loader/cache/CachedRawResource.h" 51 #include "core/loader/cache/CachedRawResource.h"
52 #include "core/loader/cache/CachedResource.h" 52 #include "core/loader/cache/CachedResource.h"
53 #include "core/loader/cache/CachedResourceLoader.h"
54 #include "core/loader/cache/MemoryCache.h" 53 #include "core/loader/cache/MemoryCache.h"
55 #include "core/page/Frame.h" 54 #include "core/page/Frame.h"
56 #include "core/page/Page.h" 55 #include "core/page/Page.h"
57 #include "core/platform/KURL.h" 56 #include "core/platform/KURL.h"
58 #include "core/platform/network/HTTPHeaderMap.h" 57 #include "core/platform/network/HTTPHeaderMap.h"
59 #include "core/platform/network/ResourceError.h" 58 #include "core/platform/network/ResourceError.h"
60 #include "core/platform/network/ResourceRequest.h" 59 #include "core/platform/network/ResourceRequest.h"
61 #include "core/platform/network/ResourceResponse.h" 60 #include "core/platform/network/ResourceResponse.h"
62 #include "core/xml/XMLHttpRequest.h" 61 #include "core/xml/XMLHttpRequest.h"
63 #include "modules/websockets/WebSocketFrame.h" 62 #include "modules/websockets/WebSocketFrame.h"
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 , m_client(client) 672 , m_client(client)
674 , m_frontend(0) 673 , m_frontend(0)
675 , m_resourcesData(adoptPtr(new NetworkResourcesData())) 674 , m_resourcesData(adoptPtr(new NetworkResourcesData()))
676 , m_loadingXHRSynchronously(false) 675 , m_loadingXHRSynchronously(false)
677 , m_isRecalculatingStyle(false) 676 , m_isRecalculatingStyle(false)
678 { 677 {
679 } 678 }
680 679
681 } // namespace WebCore 680 } // namespace WebCore
682 681
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698