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

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

Issue 1746673002: Node.h #include parsimony. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unrelated change Created 4 years, 9 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 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 #include "core/dom/NodeRareData.h" 89 #include "core/dom/NodeRareData.h"
90 #include "core/dom/NodeTraversal.h" 90 #include "core/dom/NodeTraversal.h"
91 #include "core/dom/NodeWithIndex.h" 91 #include "core/dom/NodeWithIndex.h"
92 #include "core/dom/NthIndexCache.h" 92 #include "core/dom/NthIndexCache.h"
93 #include "core/dom/ProcessingInstruction.h" 93 #include "core/dom/ProcessingInstruction.h"
94 #include "core/dom/ScriptRunner.h" 94 #include "core/dom/ScriptRunner.h"
95 #include "core/dom/ScriptedAnimationController.h" 95 #include "core/dom/ScriptedAnimationController.h"
96 #include "core/dom/ScriptedIdleTaskController.h" 96 #include "core/dom/ScriptedIdleTaskController.h"
97 #include "core/dom/SelectorQuery.h" 97 #include "core/dom/SelectorQuery.h"
98 #include "core/dom/StaticNodeList.h" 98 #include "core/dom/StaticNodeList.h"
99 #include "core/dom/StyleChangeReason.h"
99 #include "core/dom/StyleEngine.h" 100 #include "core/dom/StyleEngine.h"
100 #include "core/dom/TouchList.h" 101 #include "core/dom/TouchList.h"
101 #include "core/dom/TransformSource.h" 102 #include "core/dom/TransformSource.h"
102 #include "core/dom/TreeWalker.h" 103 #include "core/dom/TreeWalker.h"
103 #include "core/dom/VisitedLinkState.h" 104 #include "core/dom/VisitedLinkState.h"
104 #include "core/dom/XMLDocument.h" 105 #include "core/dom/XMLDocument.h"
105 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h" 106 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h"
106 #include "core/dom/custom/CustomElementRegistrationContext.h" 107 #include "core/dom/custom/CustomElementRegistrationContext.h"
107 #include "core/dom/shadow/ElementShadow.h" 108 #include "core/dom/shadow/ElementShadow.h"
108 #include "core/dom/shadow/FlatTreeTraversal.h" 109 #include "core/dom/shadow/FlatTreeTraversal.h"
(...skipping 5886 matching lines...) Expand 10 before | Expand all | Expand 10 after
5995 #ifndef NDEBUG 5996 #ifndef NDEBUG
5996 using namespace blink; 5997 using namespace blink;
5997 void showLiveDocumentInstances() 5998 void showLiveDocumentInstances()
5998 { 5999 {
5999 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 6000 Document::WeakDocumentSet& set = Document::liveDocumentSet();
6000 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6001 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6001 for (Document* document : set) 6002 for (Document* document : set)
6002 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 6003 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
6003 } 6004 }
6004 #endif 6005 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698