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

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

Issue 15072003: Move StyleResolver and related classes to core/css/resolver (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/DocumentStyleSheetCollection.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
(...skipping 15 matching lines...) Expand all
26 #include "config.h" 26 #include "config.h"
27 #include "core/dom/Element.h" 27 #include "core/dom/Element.h"
28 28
29 #include "HTMLNames.h" 29 #include "HTMLNames.h"
30 #include "XMLNSNames.h" 30 #include "XMLNSNames.h"
31 #include "XMLNames.h" 31 #include "XMLNames.h"
32 #include "core/accessibility/AXObjectCache.h" 32 #include "core/accessibility/AXObjectCache.h"
33 #include "core/css/CSSParser.h" 33 #include "core/css/CSSParser.h"
34 #include "core/css/CSSSelectorList.h" 34 #include "core/css/CSSSelectorList.h"
35 #include "core/css/StylePropertySet.h" 35 #include "core/css/StylePropertySet.h"
36 #include "core/css/StyleResolver.h" 36 #include "core/css/resolver/StyleResolver.h"
37 #include "core/dom/Attr.h" 37 #include "core/dom/Attr.h"
38 #include "core/dom/ClientRect.h" 38 #include "core/dom/ClientRect.h"
39 #include "core/dom/ClientRectList.h" 39 #include "core/dom/ClientRectList.h"
40 #include "core/dom/CustomElementRegistry.h" 40 #include "core/dom/CustomElementRegistry.h"
41 #include "core/dom/DatasetDOMStringMap.h" 41 #include "core/dom/DatasetDOMStringMap.h"
42 #include "core/dom/Document.h" 42 #include "core/dom/Document.h"
43 #include "core/dom/DocumentFragment.h" 43 #include "core/dom/DocumentFragment.h"
44 #include "core/dom/DocumentSharedObjectPool.h" 44 #include "core/dom/DocumentSharedObjectPool.h"
45 #include "core/dom/ElementRareData.h" 45 #include "core/dom/ElementRareData.h"
46 #include "core/dom/ExceptionCode.h" 46 #include "core/dom/ExceptionCode.h"
(...skipping 3094 matching lines...) Expand 10 before | Expand all | Expand 10 after
3141 return 0; 3141 return 0;
3142 } 3142 }
3143 3143
3144 Attribute* UniqueElementData::attributeItem(unsigned index) 3144 Attribute* UniqueElementData::attributeItem(unsigned index)
3145 { 3145 {
3146 ASSERT_WITH_SECURITY_IMPLICATION(index < length()); 3146 ASSERT_WITH_SECURITY_IMPLICATION(index < length());
3147 return &m_attributeVector.at(index); 3147 return &m_attributeVector.at(index);
3148 } 3148 }
3149 3149
3150 } // namespace WebCore 3150 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentStyleSheetCollection.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698