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

Side by Side Diff: Source/core/loader/ResourceLoader.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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/loader/MixedContentChecker.cpp ('k') | Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2010, 2011 Apple Inc. All rights reserved.
3 * (C) 2007 Graham Dennis (graham.dennis@gmail.com) 3 * (C) 2007 Graham Dennis (graham.dennis@gmail.com)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 22 matching lines...) Expand all
33 #include "core/inspector/InspectorInstrumentation.h" 33 #include "core/inspector/InspectorInstrumentation.h"
34 #include "core/loader/DocumentLoader.h" 34 #include "core/loader/DocumentLoader.h"
35 #include "core/loader/FrameLoader.h" 35 #include "core/loader/FrameLoader.h"
36 #include "core/loader/FrameLoaderClient.h" 36 #include "core/loader/FrameLoaderClient.h"
37 #include "core/loader/UniqueIdentifier.h" 37 #include "core/loader/UniqueIdentifier.h"
38 #include "core/loader/appcache/ApplicationCacheHost.h" 38 #include "core/loader/appcache/ApplicationCacheHost.h"
39 #include "core/loader/cache/CachedResourceLoader.h" 39 #include "core/loader/cache/CachedResourceLoader.h"
40 #include "core/loader/cache/MemoryCache.h" 40 #include "core/loader/cache/MemoryCache.h"
41 #include "core/page/Frame.h" 41 #include "core/page/Frame.h"
42 #include "core/page/Page.h" 42 #include "core/page/Page.h"
43 #include "core/platform/Logging.h"
44 #include "core/platform/network/ResourceError.h" 43 #include "core/platform/network/ResourceError.h"
45 #include "core/platform/network/ResourceHandle.h" 44 #include "core/platform/network/ResourceHandle.h"
46 #include "weborigin/SecurityOrigin.h" 45 #include "weborigin/SecurityOrigin.h"
47 46
48 namespace WebCore { 47 namespace WebCore {
49 48
50 ResourceLoader::RequestCountTracker::RequestCountTracker(CachedResourceLoader* c achedResourceLoader, CachedResource* resource) 49 ResourceLoader::RequestCountTracker::RequestCountTracker(CachedResourceLoader* c achedResourceLoader, CachedResource* resource)
51 : m_cachedResourceLoader(cachedResourceLoader) 50 : m_cachedResourceLoader(cachedResourceLoader)
52 , m_resource(resource) 51 , m_resource(resource)
53 { 52 {
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 info.addMember(m_request, "request"); 491 info.addMember(m_request, "request");
493 info.addMember(m_originalRequest, "originalRequest"); 492 info.addMember(m_originalRequest, "originalRequest");
494 info.addMember(m_deferredRequest, "deferredRequest"); 493 info.addMember(m_deferredRequest, "deferredRequest");
495 info.addMember(m_options, "options"); 494 info.addMember(m_options, "options");
496 info.addMember(m_resource, "resource"); 495 info.addMember(m_resource, "resource");
497 info.addMember(m_documentLoader, "documentLoader"); 496 info.addMember(m_documentLoader, "documentLoader");
498 info.addMember(m_requestCountTracker, "requestCountTracker"); 497 info.addMember(m_requestCountTracker, "requestCountTracker");
499 } 498 }
500 499
501 } 500 }
OLDNEW
« no previous file with comments | « Source/core/loader/MixedContentChecker.cpp ('k') | Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698