| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
| 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 6 rights reserved. | 6 rights reserved. |
| 7 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 7 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
| 10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 Boston, MA 02110-1301, USA. | 22 Boston, MA 02110-1301, USA. |
| 23 | 23 |
| 24 This class provides all functionality needed for loading images, style | 24 This class provides all functionality needed for loading images, style |
| 25 sheets and html pages from the web. It has a memory cache for these objects. | 25 sheets and html pages from the web. It has a memory cache for these objects. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "platform/loader/fetch/ResourceFetcher.h" | 28 #include "platform/loader/fetch/ResourceFetcher.h" |
| 29 | 29 |
| 30 #include "platform/Histogram.h" | 30 #include "platform/Histogram.h" |
| 31 #include "platform/RuntimeEnabledFeatures.h" | 31 #include "platform/RuntimeEnabledFeatures.h" |
| 32 #include "platform/instrumentation/PlatformInstrumentation.h" | |
| 33 #include "platform/instrumentation/tracing/TraceEvent.h" | 32 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 34 #include "platform/instrumentation/tracing/TracedValue.h" | 33 #include "platform/instrumentation/tracing/TracedValue.h" |
| 35 #include "platform/loader/fetch/FetchContext.h" | 34 #include "platform/loader/fetch/FetchContext.h" |
| 36 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" | 35 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 37 #include "platform/loader/fetch/MemoryCache.h" | 36 #include "platform/loader/fetch/MemoryCache.h" |
| 38 #include "platform/loader/fetch/ResourceLoader.h" | 37 #include "platform/loader/fetch/ResourceLoader.h" |
| 39 #include "platform/loader/fetch/ResourceLoadingLog.h" | 38 #include "platform/loader/fetch/ResourceLoadingLog.h" |
| 40 #include "platform/loader/fetch/ResourceTimingInfo.h" | 39 #include "platform/loader/fetch/ResourceTimingInfo.h" |
| 41 #include "platform/loader/fetch/UniqueIdentifier.h" | 40 #include "platform/loader/fetch/UniqueIdentifier.h" |
| 42 #include "platform/mhtml/ArchiveResource.h" | 41 #include "platform/mhtml/ArchiveResource.h" |
| 43 #include "platform/mhtml/MHTMLArchive.h" | 42 #include "platform/mhtml/MHTMLArchive.h" |
| 44 #include "platform/network/NetworkInstrumentation.h" | 43 #include "platform/network/NetworkInstrumentation.h" |
| 45 #include "platform/network/NetworkUtils.h" | 44 #include "platform/network/NetworkUtils.h" |
| 45 #include "platform/probe/PlatformProbes.h" |
| 46 #include "platform/weborigin/KnownPorts.h" | 46 #include "platform/weborigin/KnownPorts.h" |
| 47 #include "platform/weborigin/SecurityOrigin.h" | 47 #include "platform/weborigin/SecurityOrigin.h" |
| 48 #include "platform/weborigin/SecurityPolicy.h" | 48 #include "platform/weborigin/SecurityPolicy.h" |
| 49 #include "platform/weborigin/SecurityViolationReportingPolicy.h" | 49 #include "platform/weborigin/SecurityViolationReportingPolicy.h" |
| 50 #include "public/platform/Platform.h" | 50 #include "public/platform/Platform.h" |
| 51 #include "public/platform/WebCachePolicy.h" | 51 #include "public/platform/WebCachePolicy.h" |
| 52 #include "public/platform/WebURL.h" | 52 #include "public/platform/WebURL.h" |
| 53 #include "public/platform/WebURLRequest.h" | 53 #include "public/platform/WebURLRequest.h" |
| 54 #include "wtf/text/CString.h" | 54 #include "wtf/text/CString.h" |
| 55 #include "wtf/text/WTFString.h" | 55 #include "wtf/text/WTFString.h" |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 visitor->trace(m_context); | 1552 visitor->trace(m_context); |
| 1553 visitor->trace(m_archive); | 1553 visitor->trace(m_archive); |
| 1554 visitor->trace(m_loaders); | 1554 visitor->trace(m_loaders); |
| 1555 visitor->trace(m_nonBlockingLoaders); | 1555 visitor->trace(m_nonBlockingLoaders); |
| 1556 visitor->trace(m_documentResources); | 1556 visitor->trace(m_documentResources); |
| 1557 visitor->trace(m_preloads); | 1557 visitor->trace(m_preloads); |
| 1558 visitor->trace(m_resourceTimingInfoMap); | 1558 visitor->trace(m_resourceTimingInfoMap); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 } // namespace blink | 1561 } // namespace blink |
| OLD | NEW |