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

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

Issue 25777002: Move custom element code to core/dom/custom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/DocumentInit.cpp ('k') | Source/core/dom/Microtask.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 29 matching lines...) Expand all
40 #include "core/css/CSSStyleSheet.h" 40 #include "core/css/CSSStyleSheet.h"
41 #include "core/css/CSSValuePool.h" 41 #include "core/css/CSSValuePool.h"
42 #include "core/css/PropertySetCSSStyleDeclaration.h" 42 #include "core/css/PropertySetCSSStyleDeclaration.h"
43 #include "core/css/StylePropertySet.h" 43 #include "core/css/StylePropertySet.h"
44 #include "core/css/resolver/StyleResolver.h" 44 #include "core/css/resolver/StyleResolver.h"
45 #include "core/dom/Attr.h" 45 #include "core/dom/Attr.h"
46 #include "core/dom/Attribute.h" 46 #include "core/dom/Attribute.h"
47 #include "core/dom/CSSSelectorWatch.h" 47 #include "core/dom/CSSSelectorWatch.h"
48 #include "core/dom/ClientRect.h" 48 #include "core/dom/ClientRect.h"
49 #include "core/dom/ClientRectList.h" 49 #include "core/dom/ClientRectList.h"
50 #include "core/dom/CustomElement.h"
51 #include "core/dom/CustomElementRegistrationContext.h"
52 #include "core/dom/DatasetDOMStringMap.h" 50 #include "core/dom/DatasetDOMStringMap.h"
53 #include "core/dom/Document.h" 51 #include "core/dom/Document.h"
54 #include "core/dom/DocumentSharedObjectPool.h" 52 #include "core/dom/DocumentSharedObjectPool.h"
55 #include "core/dom/ElementRareData.h" 53 #include "core/dom/ElementRareData.h"
56 #include "core/events/EventDispatcher.h"
57 #include "core/dom/ExceptionCode.h" 54 #include "core/dom/ExceptionCode.h"
58 #include "core/events/FocusEvent.h"
59 #include "core/dom/FullscreenElementStack.h" 55 #include "core/dom/FullscreenElementStack.h"
60 #include "core/dom/MutationObserverInterestGroup.h" 56 #include "core/dom/MutationObserverInterestGroup.h"
61 #include "core/dom/MutationRecord.h" 57 #include "core/dom/MutationRecord.h"
62 #include "core/dom/NamedNodeMap.h" 58 #include "core/dom/NamedNodeMap.h"
63 #include "core/dom/NodeRenderStyle.h" 59 #include "core/dom/NodeRenderStyle.h"
64 #include "core/dom/NodeRenderingContext.h" 60 #include "core/dom/NodeRenderingContext.h"
65 #include "core/dom/PostAttachCallbacks.h" 61 #include "core/dom/PostAttachCallbacks.h"
66 #include "core/dom/PseudoElement.h" 62 #include "core/dom/PseudoElement.h"
67 #include "core/dom/ScriptableDocumentParser.h" 63 #include "core/dom/ScriptableDocumentParser.h"
68 #include "core/dom/SelectorQuery.h" 64 #include "core/dom/SelectorQuery.h"
69 #include "core/dom/Text.h" 65 #include "core/dom/Text.h"
66 #include "core/dom/custom/CustomElement.h"
67 #include "core/dom/custom/CustomElementRegistrationContext.h"
70 #include "core/dom/shadow/InsertionPoint.h" 68 #include "core/dom/shadow/InsertionPoint.h"
71 #include "core/dom/shadow/ShadowRoot.h" 69 #include "core/dom/shadow/ShadowRoot.h"
72 #include "core/editing/FrameSelection.h" 70 #include "core/editing/FrameSelection.h"
73 #include "core/editing/TextIterator.h" 71 #include "core/editing/TextIterator.h"
74 #include "core/editing/htmlediting.h" 72 #include "core/editing/htmlediting.h"
73 #include "core/events/EventDispatcher.h"
74 #include "core/events/FocusEvent.h"
75 #include "core/html/ClassList.h" 75 #include "core/html/ClassList.h"
76 #include "core/html/HTMLCollection.h" 76 #include "core/html/HTMLCollection.h"
77 #include "core/html/HTMLDocument.h" 77 #include "core/html/HTMLDocument.h"
78 #include "core/html/HTMLElement.h" 78 #include "core/html/HTMLElement.h"
79 #include "core/html/HTMLFormControlsCollection.h" 79 #include "core/html/HTMLFormControlsCollection.h"
80 #include "core/html/HTMLFrameOwnerElement.h" 80 #include "core/html/HTMLFrameOwnerElement.h"
81 #include "core/html/HTMLLabelElement.h" 81 #include "core/html/HTMLLabelElement.h"
82 #include "core/html/HTMLOptionsCollection.h" 82 #include "core/html/HTMLOptionsCollection.h"
83 #include "core/html/HTMLTableRowsCollection.h" 83 #include "core/html/HTMLTableRowsCollection.h"
84 #include "core/html/parser/HTMLParserIdioms.h" 84 #include "core/html/parser/HTMLParserIdioms.h"
(...skipping 3611 matching lines...) Expand 10 before | Expand all | Expand 10 after
3696 return 0; 3696 return 0;
3697 } 3697 }
3698 3698
3699 Attribute* UniqueElementData::attributeItem(unsigned index) 3699 Attribute* UniqueElementData::attributeItem(unsigned index)
3700 { 3700 {
3701 ASSERT_WITH_SECURITY_IMPLICATION(index < length()); 3701 ASSERT_WITH_SECURITY_IMPLICATION(index < length());
3702 return &m_attributeVector.at(index); 3702 return &m_attributeVector.at(index);
3703 } 3703 }
3704 3704
3705 } // namespace WebCore 3705 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentInit.cpp ('k') | Source/core/dom/Microtask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698