| 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 "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 Loading... |
| 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 } |
| OLD | NEW |