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 11 matching lines...) Expand all Loading... |
22 * Library General Public License for more details. | 22 * Library General Public License for more details. |
23 * | 23 * |
24 * You should have received a copy of the GNU Library General Public License | 24 * You should have received a copy of the GNU Library General Public License |
25 * along with this library; see the file COPYING.LIB. If not, write to | 25 * along with this library; see the file COPYING.LIB. If not, write to |
26 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 26 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 * Boston, MA 02110-1301, USA. | 27 * Boston, MA 02110-1301, USA. |
28 */ | 28 */ |
29 | 29 |
30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
31 | 31 |
32 #include "bindings/core/v8/DOMDataStore.h" | |
33 #include "bindings/core/v8/ExceptionMessages.h" | 32 #include "bindings/core/v8/ExceptionMessages.h" |
34 #include "bindings/core/v8/ExceptionState.h" | 33 #include "bindings/core/v8/ExceptionState.h" |
35 #include "bindings/core/v8/HTMLScriptElementOrSVGScriptElement.h" | 34 #include "bindings/core/v8/HTMLScriptElementOrSVGScriptElement.h" |
36 #include "bindings/core/v8/Microtask.h" | |
37 #include "bindings/core/v8/ScriptController.h" | 35 #include "bindings/core/v8/ScriptController.h" |
38 #include "bindings/core/v8/SourceLocation.h" | 36 #include "bindings/core/v8/SourceLocation.h" |
39 #include "bindings/core/v8/StringOrDictionary.h" | 37 #include "bindings/core/v8/StringOrDictionary.h" |
40 #include "bindings/core/v8/V0CustomElementConstructorBuilder.h" | 38 #include "bindings/core/v8/V0CustomElementConstructorBuilder.h" |
41 #include "bindings/core/v8/V8DOMWrapper.h" | 39 #include "bindings/core/v8/V8DOMWrapper.h" |
42 #include "bindings/core/v8/V8ElementCreationOptions.h" | 40 #include "bindings/core/v8/V8ElementCreationOptions.h" |
43 #include "bindings/core/v8/V8PerIsolateData.h" | 41 #include "bindings/core/v8/V8PerIsolateData.h" |
44 #include "bindings/core/v8/WindowProxy.h" | 42 #include "bindings/core/v8/WindowProxy.h" |
45 #include "core/HTMLElementFactory.h" | 43 #include "core/HTMLElementFactory.h" |
46 #include "core/HTMLElementTypeHelpers.h" | 44 #include "core/HTMLElementTypeHelpers.h" |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 #include "platform/DateComponents.h" | 222 #include "platform/DateComponents.h" |
225 #include "platform/EventDispatchForbiddenScope.h" | 223 #include "platform/EventDispatchForbiddenScope.h" |
226 #include "platform/Histogram.h" | 224 #include "platform/Histogram.h" |
227 #include "platform/InstanceCounters.h" | 225 #include "platform/InstanceCounters.h" |
228 #include "platform/Language.h" | 226 #include "platform/Language.h" |
229 #include "platform/LengthFunctions.h" | 227 #include "platform/LengthFunctions.h" |
230 #include "platform/PluginScriptForbiddenScope.h" | 228 #include "platform/PluginScriptForbiddenScope.h" |
231 #include "platform/RuntimeEnabledFeatures.h" | 229 #include "platform/RuntimeEnabledFeatures.h" |
232 #include "platform/ScriptForbiddenScope.h" | 230 #include "platform/ScriptForbiddenScope.h" |
233 #include "platform/WebFrameScheduler.h" | 231 #include "platform/WebFrameScheduler.h" |
| 232 #include "platform/bindings/DOMDataStore.h" |
| 233 #include "platform/bindings/Microtask.h" |
234 #include "platform/instrumentation/tracing/TraceEvent.h" | 234 #include "platform/instrumentation/tracing/TraceEvent.h" |
235 #include "platform/loader/fetch/ResourceFetcher.h" | 235 #include "platform/loader/fetch/ResourceFetcher.h" |
236 #include "platform/network/ContentSecurityPolicyParsers.h" | 236 #include "platform/network/ContentSecurityPolicyParsers.h" |
237 #include "platform/network/HTTPParsers.h" | 237 #include "platform/network/HTTPParsers.h" |
238 #include "platform/network/NetworkStateNotifier.h" | 238 #include "platform/network/NetworkStateNotifier.h" |
239 #include "platform/scheduler/child/web_scheduler.h" | 239 #include "platform/scheduler/child/web_scheduler.h" |
240 #include "platform/scroll/ScrollbarTheme.h" | 240 #include "platform/scroll/ScrollbarTheme.h" |
241 #include "platform/text/PlatformLocale.h" | 241 #include "platform/text/PlatformLocale.h" |
242 #include "platform/text/SegmentedString.h" | 242 #include "platform/text/SegmentedString.h" |
243 #include "platform/weborigin/OriginAccessEntry.h" | 243 #include "platform/weborigin/OriginAccessEntry.h" |
(...skipping 6528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6772 } | 6772 } |
6773 | 6773 |
6774 void showLiveDocumentInstances() { | 6774 void showLiveDocumentInstances() { |
6775 WeakDocumentSet& set = liveDocumentSet(); | 6775 WeakDocumentSet& set = liveDocumentSet(); |
6776 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6776 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
6777 for (blink::Document* document : set) | 6777 for (blink::Document* document : set) |
6778 fprintf(stderr, "- Document %p URL: %s\n", document, | 6778 fprintf(stderr, "- Document %p URL: %s\n", document, |
6779 document->Url().GetString().Utf8().data()); | 6779 document->Url().GetString().Utf8().data()); |
6780 } | 6780 } |
6781 #endif | 6781 #endif |
OLD | NEW |