Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2856173004: Clean up bindings/core/v8 (Part 5) (Closed)
Patch Set: Fix build Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 19 matching lines...) Expand all
30 #include "core/dom/Document.h" 30 #include "core/dom/Document.h"
31 31
32 #include "bindings/core/v8/ExceptionMessages.h" 32 #include "bindings/core/v8/ExceptionMessages.h"
33 #include "bindings/core/v8/ExceptionState.h" 33 #include "bindings/core/v8/ExceptionState.h"
34 #include "bindings/core/v8/HTMLScriptElementOrSVGScriptElement.h" 34 #include "bindings/core/v8/HTMLScriptElementOrSVGScriptElement.h"
35 #include "bindings/core/v8/ScriptController.h" 35 #include "bindings/core/v8/ScriptController.h"
36 #include "bindings/core/v8/SourceLocation.h" 36 #include "bindings/core/v8/SourceLocation.h"
37 #include "bindings/core/v8/StringOrDictionary.h" 37 #include "bindings/core/v8/StringOrDictionary.h"
38 #include "bindings/core/v8/V0CustomElementConstructorBuilder.h" 38 #include "bindings/core/v8/V0CustomElementConstructorBuilder.h"
39 #include "bindings/core/v8/V8ElementCreationOptions.h" 39 #include "bindings/core/v8/V8ElementCreationOptions.h"
40 #include "bindings/core/v8/V8PerIsolateData.h"
41 #include "bindings/core/v8/WindowProxy.h" 40 #include "bindings/core/v8/WindowProxy.h"
42 #include "core/HTMLElementFactory.h" 41 #include "core/HTMLElementFactory.h"
43 #include "core/HTMLElementTypeHelpers.h" 42 #include "core/HTMLElementTypeHelpers.h"
44 #include "core/HTMLNames.h" 43 #include "core/HTMLNames.h"
45 #include "core/SVGElementFactory.h" 44 #include "core/SVGElementFactory.h"
46 #include "core/SVGNames.h" 45 #include "core/SVGNames.h"
47 #include "core/XMLNSNames.h" 46 #include "core/XMLNSNames.h"
48 #include "core/XMLNames.h" 47 #include "core/XMLNames.h"
49 #include "core/animation/CompositorPendingAnimations.h" 48 #include "core/animation/CompositorPendingAnimations.h"
50 #include "core/animation/DocumentAnimations.h" 49 #include "core/animation/DocumentAnimations.h"
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 #include "platform/InstanceCounters.h" 223 #include "platform/InstanceCounters.h"
225 #include "platform/Language.h" 224 #include "platform/Language.h"
226 #include "platform/LengthFunctions.h" 225 #include "platform/LengthFunctions.h"
227 #include "platform/PluginScriptForbiddenScope.h" 226 #include "platform/PluginScriptForbiddenScope.h"
228 #include "platform/RuntimeEnabledFeatures.h" 227 #include "platform/RuntimeEnabledFeatures.h"
229 #include "platform/ScriptForbiddenScope.h" 228 #include "platform/ScriptForbiddenScope.h"
230 #include "platform/WebFrameScheduler.h" 229 #include "platform/WebFrameScheduler.h"
231 #include "platform/bindings/DOMDataStore.h" 230 #include "platform/bindings/DOMDataStore.h"
232 #include "platform/bindings/Microtask.h" 231 #include "platform/bindings/Microtask.h"
233 #include "platform/bindings/V8DOMWrapper.h" 232 #include "platform/bindings/V8DOMWrapper.h"
233 #include "platform/bindings/V8PerIsolateData.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 6537 matching lines...) Expand 10 before | Expand all | Expand 10 after
6781 } 6781 }
6782 6782
6783 void showLiveDocumentInstances() { 6783 void showLiveDocumentInstances() {
6784 WeakDocumentSet& set = liveDocumentSet(); 6784 WeakDocumentSet& set = liveDocumentSet();
6785 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6785 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6786 for (blink::Document* document : set) 6786 for (blink::Document* document : set)
6787 fprintf(stderr, "- Document %p URL: %s\n", document, 6787 fprintf(stderr, "- Document %p URL: %s\n", document,
6788 document->Url().GetString().Utf8().data()); 6788 document->Url().GetString().Utf8().data());
6789 } 6789 }
6790 #endif 6790 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSStyleSheet.cpp ('k') | third_party/WebKit/Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698