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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/ProgressTracker.cpp ('k') | Source/core/loader/SubframeLoader.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 19 matching lines...) Expand all
30 #include "config.h" 30 #include "config.h"
31 #include "ResourceLoader.h" 31 #include "ResourceLoader.h"
32 32
33 #include "ApplicationCacheHost.h" 33 #include "ApplicationCacheHost.h"
34 #include "CachedResourceLoader.h" 34 #include "CachedResourceLoader.h"
35 #include "DocumentLoader.h" 35 #include "DocumentLoader.h"
36 #include "Frame.h" 36 #include "Frame.h"
37 #include "FrameLoader.h" 37 #include "FrameLoader.h"
38 #include "FrameLoaderClient.h" 38 #include "FrameLoaderClient.h"
39 #include "InspectorInstrumentation.h" 39 #include "InspectorInstrumentation.h"
40 #include "Logging.h"
41 #include "MemoryCache.h" 40 #include "MemoryCache.h"
42 #include "Page.h" 41 #include "Page.h"
43 #include "SecurityOrigin.h" 42 #include "SecurityOrigin.h"
44 #include "core/loader/UniqueIdentifier.h" 43 #include "core/loader/UniqueIdentifier.h"
44 #include "core/platform/Logging.h"
45 #include "core/platform/network/ResourceError.h" 45 #include "core/platform/network/ResourceError.h"
46 #include "core/platform/network/ResourceHandle.h" 46 #include "core/platform/network/ResourceHandle.h"
47 47
48 namespace WebCore { 48 namespace WebCore {
49 49
50 ResourceLoader::RequestCountTracker::RequestCountTracker(CachedResourceLoader* c achedResourceLoader, CachedResource* resource) 50 ResourceLoader::RequestCountTracker::RequestCountTracker(CachedResourceLoader* c achedResourceLoader, CachedResource* resource)
51 : m_cachedResourceLoader(cachedResourceLoader) 51 : m_cachedResourceLoader(cachedResourceLoader)
52 , m_resource(resource) 52 , m_resource(resource)
53 { 53 {
54 m_cachedResourceLoader->incrementRequestCount(m_resource); 54 m_cachedResourceLoader->incrementRequestCount(m_resource);
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 info.addMember(m_request, "request"); 520 info.addMember(m_request, "request");
521 info.addMember(m_originalRequest, "originalRequest"); 521 info.addMember(m_originalRequest, "originalRequest");
522 info.addMember(m_deferredRequest, "deferredRequest"); 522 info.addMember(m_deferredRequest, "deferredRequest");
523 info.addMember(m_options, "options"); 523 info.addMember(m_options, "options");
524 info.addMember(m_resource, "resource"); 524 info.addMember(m_resource, "resource");
525 info.addMember(m_documentLoader, "documentLoader"); 525 info.addMember(m_documentLoader, "documentLoader");
526 info.addMember(m_requestCountTracker, "requestCountTracker"); 526 info.addMember(m_requestCountTracker, "requestCountTracker");
527 } 527 }
528 528
529 } 529 }
OLDNEW
« no previous file with comments | « Source/core/loader/ProgressTracker.cpp ('k') | Source/core/loader/SubframeLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698