| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 #include "core/workers/SharedWorkerRepositoryClient.h" | 221 #include "core/workers/SharedWorkerRepositoryClient.h" |
| 222 #include "core/xml/parser/XMLDocumentParser.h" | 222 #include "core/xml/parser/XMLDocumentParser.h" |
| 223 #include "platform/DateComponents.h" | 223 #include "platform/DateComponents.h" |
| 224 #include "platform/EventDispatchForbiddenScope.h" | 224 #include "platform/EventDispatchForbiddenScope.h" |
| 225 #include "platform/Histogram.h" | 225 #include "platform/Histogram.h" |
| 226 #include "platform/Language.h" | 226 #include "platform/Language.h" |
| 227 #include "platform/LengthFunctions.h" | 227 #include "platform/LengthFunctions.h" |
| 228 #include "platform/PluginScriptForbiddenScope.h" | 228 #include "platform/PluginScriptForbiddenScope.h" |
| 229 #include "platform/RuntimeEnabledFeatures.h" | 229 #include "platform/RuntimeEnabledFeatures.h" |
| 230 #include "platform/ScriptForbiddenScope.h" | 230 #include "platform/ScriptForbiddenScope.h" |
| 231 #include "platform/TraceEvent.h" | |
| 232 #include "platform/network/ContentSecurityPolicyParsers.h" | 231 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 233 #include "platform/network/HTTPParsers.h" | 232 #include "platform/network/HTTPParsers.h" |
| 234 #include "platform/scheduler/CancellableTaskFactory.h" | 233 #include "platform/scheduler/CancellableTaskFactory.h" |
| 235 #include "platform/scroll/ScrollbarTheme.h" | 234 #include "platform/scroll/ScrollbarTheme.h" |
| 236 #include "platform/text/PlatformLocale.h" | 235 #include "platform/text/PlatformLocale.h" |
| 237 #include "platform/text/SegmentedString.h" | 236 #include "platform/text/SegmentedString.h" |
| 237 #include "platform/tracing/TraceEvent.h" |
| 238 #include "platform/weborigin/OriginAccessEntry.h" | 238 #include "platform/weborigin/OriginAccessEntry.h" |
| 239 #include "platform/weborigin/SchemeRegistry.h" | 239 #include "platform/weborigin/SchemeRegistry.h" |
| 240 #include "platform/weborigin/SecurityOrigin.h" | 240 #include "platform/weborigin/SecurityOrigin.h" |
| 241 #include "public/platform/Platform.h" | 241 #include "public/platform/Platform.h" |
| 242 #include "public/platform/WebAddressSpace.h" | 242 #include "public/platform/WebAddressSpace.h" |
| 243 #include "public/platform/WebFrameScheduler.h" | 243 #include "public/platform/WebFrameScheduler.h" |
| 244 #include "public/platform/WebScheduler.h" | 244 #include "public/platform/WebScheduler.h" |
| 245 #include "wtf/AutoReset.h" | 245 #include "wtf/AutoReset.h" |
| 246 #include "wtf/CurrentTime.h" | 246 #include "wtf/CurrentTime.h" |
| 247 #include "wtf/DateMath.h" | 247 #include "wtf/DateMath.h" |
| (...skipping 6140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6388 } | 6388 } |
| 6389 | 6389 |
| 6390 void showLiveDocumentInstances() { | 6390 void showLiveDocumentInstances() { |
| 6391 WeakDocumentSet& set = liveDocumentSet(); | 6391 WeakDocumentSet& set = liveDocumentSet(); |
| 6392 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6392 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6393 for (Document* document : set) | 6393 for (Document* document : set) |
| 6394 fprintf(stderr, "- Document %p URL: %s\n", document, | 6394 fprintf(stderr, "- Document %p URL: %s\n", document, |
| 6395 document->url().getString().utf8().data()); | 6395 document->url().getString().utf8().data()); |
| 6396 } | 6396 } |
| 6397 #endif | 6397 #endif |
| OLD | NEW |