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

Side by Side Diff: Source/core/dom/Document.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/ContainerNode.cpp ('k') | Source/core/dom/Element.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 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 10 matching lines...) Expand all
21 * 21 *
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "Document.h" 29 #include "Document.h"
30 30
31 #include "AXObjectCache.h"
32 #include "AnimationController.h" 31 #include "AnimationController.h"
33 #include "Attr.h" 32 #include "Attr.h"
34 #include "Attribute.h" 33 #include "Attribute.h"
35 #include "CDATASection.h" 34 #include "CDATASection.h"
36 #include "CSSParser.h" 35 #include "CSSParser.h"
37 #include "CSSStyleDeclaration.h" 36 #include "CSSStyleDeclaration.h"
38 #include "CSSStyleSheet.h" 37 #include "CSSStyleSheet.h"
39 #include "CSSValueKeywords.h" 38 #include "CSSValueKeywords.h"
40 #include "CachedCSSStyleSheet.h" 39 #include "CachedCSSStyleSheet.h"
41 #include "CachedResourceLoader.h" 40 #include "CachedResourceLoader.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 #include "FocusController.h" 75 #include "FocusController.h"
77 #include "FontLoader.h" 76 #include "FontLoader.h"
78 #include "FormController.h" 77 #include "FormController.h"
79 #include "Frame.h" 78 #include "Frame.h"
80 #include "FrameLoader.h" 79 #include "FrameLoader.h"
81 #include "FrameLoaderClient.h" 80 #include "FrameLoaderClient.h"
82 #include "FrameSelection.h" 81 #include "FrameSelection.h"
83 #include "FrameTree.h" 82 #include "FrameTree.h"
84 #include "FrameView.h" 83 #include "FrameView.h"
85 #include "GeolocationController.h" 84 #include "GeolocationController.h"
86 #include "HashChangeEvent.h"
87 #include "HistogramSupport.h"
88 #include "History.h"
89 #include "HTMLAllCollection.h" 85 #include "HTMLAllCollection.h"
90 #include "HTMLAnchorElement.h" 86 #include "HTMLAnchorElement.h"
91 #include "HTMLBodyElement.h" 87 #include "HTMLBodyElement.h"
92 #include "HTMLCanvasElement.h" 88 #include "HTMLCanvasElement.h"
93 #include "HTMLCollection.h" 89 #include "HTMLCollection.h"
94 #include "HTMLDocument.h" 90 #include "HTMLDocument.h"
95 #include "HTMLElementFactory.h" 91 #include "HTMLElementFactory.h"
96 #include "HTMLFrameOwnerElement.h" 92 #include "HTMLFrameOwnerElement.h"
97 #include "HTMLHeadElement.h" 93 #include "HTMLHeadElement.h"
98 #include "HTMLIFrameElement.h" 94 #include "HTMLIFrameElement.h"
99 #include "HTMLLinkElement.h" 95 #include "HTMLLinkElement.h"
100 #include "HTMLMapElement.h" 96 #include "HTMLMapElement.h"
101 #include "HTMLNameCollection.h" 97 #include "HTMLNameCollection.h"
102 #include "HTMLNames.h" 98 #include "HTMLNames.h"
103 #include "HTMLParserIdioms.h" 99 #include "HTMLParserIdioms.h"
104 #include "HTMLStyleElement.h" 100 #include "HTMLStyleElement.h"
105 #include "HTMLTitleElement.h" 101 #include "HTMLTitleElement.h"
106 #include "HTTPParsers.h" 102 #include "HTTPParsers.h"
103 #include "HashChangeEvent.h"
104 #include "HistogramSupport.h"
105 #include "History.h"
107 #include "HitTestRequest.h" 106 #include "HitTestRequest.h"
108 #include "HitTestResult.h" 107 #include "HitTestResult.h"
109 #include "ImageLoader.h" 108 #include "ImageLoader.h"
110 #include "InspectorCounters.h" 109 #include "InspectorCounters.h"
111 #include "InspectorInstrumentation.h" 110 #include "InspectorInstrumentation.h"
112 #include "Language.h" 111 #include "Language.h"
113 #include "Logging.h" 112 #include "Logging.h"
114 #include "MediaCanStartListener.h" 113 #include "MediaCanStartListener.h"
115 #include "MediaQueryList.h" 114 #include "MediaQueryList.h"
116 #include "MediaQueryMatcher.h" 115 #include "MediaQueryMatcher.h"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 #include "WebCoreMemoryInstrumentation.h" 178 #include "WebCoreMemoryInstrumentation.h"
180 #include "XMLDocumentParser.h" 179 #include "XMLDocumentParser.h"
181 #include "XMLHttpRequest.h" 180 #include "XMLHttpRequest.h"
182 #include "XMLNSNames.h" 181 #include "XMLNSNames.h"
183 #include "XMLNames.h" 182 #include "XMLNames.h"
184 #include "XPathEvaluator.h" 183 #include "XPathEvaluator.h"
185 #include "XPathExpression.h" 184 #include "XPathExpression.h"
186 #include "XPathNSResolver.h" 185 #include "XPathNSResolver.h"
187 #include "XPathResult.h" 186 #include "XPathResult.h"
188 #include "XSLTProcessor.h" 187 #include "XSLTProcessor.h"
188 #include "core/accessibility/AXObjectCache.h"
189 #include "htmlediting.h" 189 #include "htmlediting.h"
190 #include <wtf/CurrentTime.h> 190 #include <wtf/CurrentTime.h>
191 #include <wtf/HashFunctions.h> 191 #include <wtf/HashFunctions.h>
192 #include <wtf/MainThread.h> 192 #include <wtf/MainThread.h>
193 #include <wtf/MemoryInstrumentationHashCountedSet.h> 193 #include <wtf/MemoryInstrumentationHashCountedSet.h>
194 #include <wtf/MemoryInstrumentationHashMap.h> 194 #include <wtf/MemoryInstrumentationHashMap.h>
195 #include <wtf/MemoryInstrumentationHashSet.h> 195 #include <wtf/MemoryInstrumentationHashSet.h>
196 #include <wtf/MemoryInstrumentationVector.h> 196 #include <wtf/MemoryInstrumentationVector.h>
197 #include <wtf/PassRefPtr.h> 197 #include <wtf/PassRefPtr.h>
198 #include <wtf/StdLibExtras.h> 198 #include <wtf/StdLibExtras.h>
(...skipping 5593 matching lines...) Expand 10 before | Expand all | Expand 10 after
5792 return; 5792 return;
5793 5793
5794 Vector<RefPtr<Element> > associatedFormControls; 5794 Vector<RefPtr<Element> > associatedFormControls;
5795 copyToVector(m_associatedFormControls, associatedFormControls); 5795 copyToVector(m_associatedFormControls, associatedFormControls);
5796 5796
5797 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls); 5797 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls);
5798 m_associatedFormControls.clear(); 5798 m_associatedFormControls.clear();
5799 } 5799 }
5800 5800
5801 } // namespace WebCore 5801 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698