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

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

Issue 14336010: Absolutify paths to accessibility/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/Document.cpp ('k') | Source/core/dom/Node.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
11 * modify it under the terms of the GNU Library General Public 11 * modify it under the terms of the GNU Library General Public
12 * License as published by the Free Software Foundation; either 12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version. 13 * version 2 of the License, or (at your option) any later version.
14 * 14 *
15 * This library is distributed in the hope that it will be useful, 15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Library General Public License for more details. 18 * Library General Public License for more details.
19 * 19 *
20 * You should have received a copy of the GNU Library General Public License 20 * You should have received a copy of the GNU Library General Public License
21 * along with this library; see the file COPYING.LIB. If not, write to 21 * along with this library; see the file COPYING.LIB. If not, write to
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "Element.h" 27 #include "Element.h"
28 28
29 #include "AXObjectCache.h"
30 #include "Attr.h" 29 #include "Attr.h"
31 #include "CSSParser.h" 30 #include "CSSParser.h"
32 #include "CSSSelectorList.h" 31 #include "CSSSelectorList.h"
33 #include "ClassList.h" 32 #include "ClassList.h"
34 #include "ClientRect.h" 33 #include "ClientRect.h"
35 #include "ClientRectList.h" 34 #include "ClientRectList.h"
36 #include "CustomElementRegistry.h" 35 #include "CustomElementRegistry.h"
37 #include "DOMTokenList.h" 36 #include "DOMTokenList.h"
38 #include "DatasetDOMStringMap.h" 37 #include "DatasetDOMStringMap.h"
39 #include "Document.h" 38 #include "Document.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "Settings.h" 74 #include "Settings.h"
76 #include "ShadowRoot.h" 75 #include "ShadowRoot.h"
77 #include "StylePropertySet.h" 76 #include "StylePropertySet.h"
78 #include "StyleResolver.h" 77 #include "StyleResolver.h"
79 #include "Text.h" 78 #include "Text.h"
80 #include "TextIterator.h" 79 #include "TextIterator.h"
81 #include "VoidCallback.h" 80 #include "VoidCallback.h"
82 #include "WebCoreMemoryInstrumentation.h" 81 #include "WebCoreMemoryInstrumentation.h"
83 #include "XMLNSNames.h" 82 #include "XMLNSNames.h"
84 #include "XMLNames.h" 83 #include "XMLNames.h"
84 #include "core/accessibility/AXObjectCache.h"
85 #include "htmlediting.h" 85 #include "htmlediting.h"
86 #include <wtf/BitVector.h> 86 #include <wtf/BitVector.h>
87 #include <wtf/MemoryInstrumentationVector.h> 87 #include <wtf/MemoryInstrumentationVector.h>
88 #include <wtf/text/CString.h> 88 #include <wtf/text/CString.h>
89 89
90 #if ENABLE(SVG) 90 #if ENABLE(SVG)
91 #include "SVGDocumentExtensions.h" 91 #include "SVGDocumentExtensions.h"
92 #include "SVGElement.h" 92 #include "SVGElement.h"
93 #include "SVGNames.h" 93 #include "SVGNames.h"
94 #endif 94 #endif
(...skipping 3018 matching lines...) Expand 10 before | Expand all | Expand 10 after
3113 return 0; 3113 return 0;
3114 } 3114 }
3115 3115
3116 Attribute* UniqueElementData::attributeItem(unsigned index) 3116 Attribute* UniqueElementData::attributeItem(unsigned index)
3117 { 3117 {
3118 ASSERT_WITH_SECURITY_IMPLICATION(index < length()); 3118 ASSERT_WITH_SECURITY_IMPLICATION(index < length());
3119 return &m_attributeVector.at(index); 3119 return &m_attributeVector.at(index);
3120 } 3120 }
3121 3121
3122 } // namespace WebCore 3122 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698