| 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 
      rights reserved. | 5     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 
      rights reserved. | 
| 6     Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 6     Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 
| 7 | 7 | 
| 8     This library is free software; you can redistribute it and/or | 8     This library is free software; you can redistribute it and/or | 
| 9     modify it under the terms of the GNU Library General Public | 9     modify it under the terms of the GNU Library General Public | 
| 10     License as published by the Free Software Foundation; either | 10     License as published by the Free Software Foundation; either | 
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 49 #include "core/frame/Settings.h" | 49 #include "core/frame/Settings.h" | 
| 50 #include "core/frame/csp/ContentSecurityPolicy.h" | 50 #include "core/frame/csp/ContentSecurityPolicy.h" | 
| 51 #include "core/html/HTMLElement.h" | 51 #include "core/html/HTMLElement.h" | 
| 52 #include "core/html/HTMLFrameOwnerElement.h" | 52 #include "core/html/HTMLFrameOwnerElement.h" | 
| 53 #include "core/html/imports/HTMLImportsController.h" | 53 #include "core/html/imports/HTMLImportsController.h" | 
| 54 #include "core/inspector/ConsoleMessage.h" | 54 #include "core/inspector/ConsoleMessage.h" | 
| 55 #include "core/inspector/InspectorInstrumentation.h" | 55 #include "core/inspector/InspectorInstrumentation.h" | 
| 56 #include "core/loader/DocumentLoader.h" | 56 #include "core/loader/DocumentLoader.h" | 
| 57 #include "core/loader/FrameLoader.h" | 57 #include "core/loader/FrameLoader.h" | 
| 58 #include "core/loader/FrameLoaderClient.h" | 58 #include "core/loader/FrameLoaderClient.h" | 
|  | 59 #include "core/loader/MixedContentChecker.h" | 
| 59 #include "core/loader/PingLoader.h" | 60 #include "core/loader/PingLoader.h" | 
| 60 #include "core/loader/SubstituteData.h" | 61 #include "core/loader/SubstituteData.h" | 
| 61 #include "core/loader/UniqueIdentifier.h" | 62 #include "core/loader/UniqueIdentifier.h" | 
| 62 #include "core/loader/appcache/ApplicationCacheHost.h" | 63 #include "core/loader/appcache/ApplicationCacheHost.h" | 
| 63 #include "core/timing/Performance.h" | 64 #include "core/timing/Performance.h" | 
| 64 #include "core/timing/ResourceTimingInfo.h" | 65 #include "core/timing/ResourceTimingInfo.h" | 
| 65 #include "core/svg/graphics/SVGImageChromeClient.h" | 66 #include "core/svg/graphics/SVGImageChromeClient.h" | 
| 66 #include "platform/Logging.h" | 67 #include "platform/Logging.h" | 
| 67 #include "platform/RuntimeEnabledFeatures.h" | 68 #include "platform/RuntimeEnabledFeatures.h" | 
| 68 #include "platform/TraceEvent.h" | 69 #include "platform/TraceEvent.h" | 
| (...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1516 | 1517 | 
| 1517 void ResourceFetcher::trace(Visitor* visitor) | 1518 void ResourceFetcher::trace(Visitor* visitor) | 
| 1518 { | 1519 { | 
| 1519     visitor->trace(m_document); | 1520     visitor->trace(m_document); | 
| 1520     visitor->trace(m_loaders); | 1521     visitor->trace(m_loaders); | 
| 1521     visitor->trace(m_multipartLoaders); | 1522     visitor->trace(m_multipartLoaders); | 
| 1522     ResourceLoaderHost::trace(visitor); | 1523     ResourceLoaderHost::trace(visitor); | 
| 1523 } | 1524 } | 
| 1524 | 1525 | 
| 1525 } | 1526 } | 
| OLD | NEW | 
|---|