| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 #include "core/workers/SharedWorkerRepositoryClient.h" | 219 #include "core/workers/SharedWorkerRepositoryClient.h" |
| 220 #include "core/xml/parser/XMLDocumentParser.h" | 220 #include "core/xml/parser/XMLDocumentParser.h" |
| 221 #include "platform/DateComponents.h" | 221 #include "platform/DateComponents.h" |
| 222 #include "platform/EventDispatchForbiddenScope.h" | 222 #include "platform/EventDispatchForbiddenScope.h" |
| 223 #include "platform/Histogram.h" | 223 #include "platform/Histogram.h" |
| 224 #include "platform/Language.h" | 224 #include "platform/Language.h" |
| 225 #include "platform/LengthFunctions.h" | 225 #include "platform/LengthFunctions.h" |
| 226 #include "platform/PluginScriptForbiddenScope.h" | 226 #include "platform/PluginScriptForbiddenScope.h" |
| 227 #include "platform/RuntimeEnabledFeatures.h" | 227 #include "platform/RuntimeEnabledFeatures.h" |
| 228 #include "platform/ScriptForbiddenScope.h" | 228 #include "platform/ScriptForbiddenScope.h" |
| 229 #include "platform/TraceEvent.h" | |
| 230 #include "platform/network/ContentSecurityPolicyParsers.h" | 229 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 231 #include "platform/network/HTTPParsers.h" | 230 #include "platform/network/HTTPParsers.h" |
| 232 #include "platform/scheduler/CancellableTaskFactory.h" | 231 #include "platform/scheduler/CancellableTaskFactory.h" |
| 233 #include "platform/scroll/ScrollbarTheme.h" | 232 #include "platform/scroll/ScrollbarTheme.h" |
| 234 #include "platform/text/PlatformLocale.h" | 233 #include "platform/text/PlatformLocale.h" |
| 235 #include "platform/text/SegmentedString.h" | 234 #include "platform/text/SegmentedString.h" |
| 235 #include "platform/tracing/TraceEvent.h" |
| 236 #include "platform/weborigin/OriginAccessEntry.h" | 236 #include "platform/weborigin/OriginAccessEntry.h" |
| 237 #include "platform/weborigin/SchemeRegistry.h" | 237 #include "platform/weborigin/SchemeRegistry.h" |
| 238 #include "platform/weborigin/SecurityOrigin.h" | 238 #include "platform/weborigin/SecurityOrigin.h" |
| 239 #include "public/platform/Platform.h" | 239 #include "public/platform/Platform.h" |
| 240 #include "public/platform/WebAddressSpace.h" | 240 #include "public/platform/WebAddressSpace.h" |
| 241 #include "public/platform/WebFrameScheduler.h" | 241 #include "public/platform/WebFrameScheduler.h" |
| 242 #include "public/platform/WebScheduler.h" | 242 #include "public/platform/WebScheduler.h" |
| 243 #include "wtf/AutoReset.h" | 243 #include "wtf/AutoReset.h" |
| 244 #include "wtf/CurrentTime.h" | 244 #include "wtf/CurrentTime.h" |
| 245 #include "wtf/DateMath.h" | 245 #include "wtf/DateMath.h" |
| (...skipping 5839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6085 } | 6085 } |
| 6086 | 6086 |
| 6087 void showLiveDocumentInstances() | 6087 void showLiveDocumentInstances() |
| 6088 { | 6088 { |
| 6089 WeakDocumentSet& set = liveDocumentSet(); | 6089 WeakDocumentSet& set = liveDocumentSet(); |
| 6090 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6090 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6091 for (Document* document : set) | 6091 for (Document* document : set) |
| 6092 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 6092 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
| 6093 } | 6093 } |
| 6094 #endif | 6094 #endif |
| OLD | NEW |