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

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

Issue 2277713002: Rename CustomElementsRegistry to CustomElementRegistry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #include "core/dom/NodeComputedStyle.h" 67 #include "core/dom/NodeComputedStyle.h"
68 #include "core/dom/NodeIntersectionObserverData.h" 68 #include "core/dom/NodeIntersectionObserverData.h"
69 #include "core/dom/PresentationAttributeStyle.h" 69 #include "core/dom/PresentationAttributeStyle.h"
70 #include "core/dom/PseudoElement.h" 70 #include "core/dom/PseudoElement.h"
71 #include "core/dom/ScriptableDocumentParser.h" 71 #include "core/dom/ScriptableDocumentParser.h"
72 #include "core/dom/SelectorQuery.h" 72 #include "core/dom/SelectorQuery.h"
73 #include "core/dom/StyleChangeReason.h" 73 #include "core/dom/StyleChangeReason.h"
74 #include "core/dom/StyleEngine.h" 74 #include "core/dom/StyleEngine.h"
75 #include "core/dom/Text.h" 75 #include "core/dom/Text.h"
76 #include "core/dom/custom/CustomElement.h" 76 #include "core/dom/custom/CustomElement.h"
77 #include "core/dom/custom/CustomElementsRegistry.h" 77 #include "core/dom/custom/CustomElementRegistry.h"
78 #include "core/dom/custom/V0CustomElement.h" 78 #include "core/dom/custom/V0CustomElement.h"
79 #include "core/dom/custom/V0CustomElementRegistrationContext.h" 79 #include "core/dom/custom/V0CustomElementRegistrationContext.h"
80 #include "core/dom/shadow/InsertionPoint.h" 80 #include "core/dom/shadow/InsertionPoint.h"
81 #include "core/dom/shadow/ShadowRoot.h" 81 #include "core/dom/shadow/ShadowRoot.h"
82 #include "core/dom/shadow/ShadowRootInit.h" 82 #include "core/dom/shadow/ShadowRootInit.h"
83 #include "core/dom/shadow/SlotAssignment.h" 83 #include "core/dom/shadow/SlotAssignment.h"
84 #include "core/editing/EditingUtilities.h" 84 #include "core/editing/EditingUtilities.h"
85 #include "core/editing/FrameSelection.h" 85 #include "core/editing/FrameSelection.h"
86 #include "core/editing/iterators/TextIterator.h" 86 #include "core/editing/iterators/TextIterator.h"
87 #include "core/editing/serializers/Serialization.h" 87 #include "core/editing/serializers/Serialization.h"
(...skipping 3753 matching lines...) Expand 10 before | Expand all | Expand 10 after
3841 3841
3842 DEFINE_TRACE_WRAPPERS(Element) 3842 DEFINE_TRACE_WRAPPERS(Element)
3843 { 3843 {
3844 if (hasRareData()) { 3844 if (hasRareData()) {
3845 visitor->traceWrappers(elementRareData()); 3845 visitor->traceWrappers(elementRareData());
3846 } 3846 }
3847 ContainerNode::traceWrappers(visitor); 3847 ContainerNode::traceWrappers(visitor);
3848 } 3848 }
3849 3849
3850 } // namespace blink 3850 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/custom/CustomElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698