| OLD | NEW |
| 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 Loading... |
| 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" | 40 #include "Logging.h" |
| 41 #include "MemoryCache.h" | 41 #include "MemoryCache.h" |
| 42 #include "Page.h" | 42 #include "Page.h" |
| 43 #include "ResourceError.h" | |
| 44 #include "ResourceHandle.h" | |
| 45 #include "SecurityOrigin.h" | 43 #include "SecurityOrigin.h" |
| 46 #include "core/loader/UniqueIdentifier.h" | 44 #include "core/loader/UniqueIdentifier.h" |
| 45 #include "core/platform/network/ResourceError.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); |
| 55 } | 55 } |
| 56 | 56 |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |