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

Side by Side Diff: Source/core/dom/Node.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/Element.cpp ('k') | Source/core/dom/NodeRenderingContext.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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 16 matching lines...) Expand all
27 27
28 #include "HTMLNames.h" 28 #include "HTMLNames.h"
29 #include "XMLNames.h" 29 #include "XMLNames.h"
30 #include "core/accessibility/AXObjectCache.h" 30 #include "core/accessibility/AXObjectCache.h"
31 #include "core/css/CSSParser.h" 31 #include "core/css/CSSParser.h"
32 #include "core/css/CSSRule.h" 32 #include "core/css/CSSRule.h"
33 #include "core/css/CSSSelector.h" 33 #include "core/css/CSSSelector.h"
34 #include "core/css/CSSSelectorList.h" 34 #include "core/css/CSSSelectorList.h"
35 #include "core/css/CSSStyleRule.h" 35 #include "core/css/CSSStyleRule.h"
36 #include "core/css/CSSStyleSheet.h" 36 #include "core/css/CSSStyleSheet.h"
37 #include "core/css/StyleResolver.h" 37 #include "core/css/resolver/StyleResolver.h"
38 #include "core/dom/Attr.h" 38 #include "core/dom/Attr.h"
39 #include "core/dom/Attribute.h" 39 #include "core/dom/Attribute.h"
40 #include "core/dom/BeforeLoadEvent.h" 40 #include "core/dom/BeforeLoadEvent.h"
41 #include "core/dom/ChildListMutationScope.h" 41 #include "core/dom/ChildListMutationScope.h"
42 #include "core/dom/ChildNodeList.h" 42 #include "core/dom/ChildNodeList.h"
43 #include "core/dom/ClassNodeList.h" 43 #include "core/dom/ClassNodeList.h"
44 #include "core/dom/ContainerNodeAlgorithms.h" 44 #include "core/dom/ContainerNodeAlgorithms.h"
45 #include "core/dom/DOMImplementation.h" 45 #include "core/dom/DOMImplementation.h"
46 #include "core/dom/Document.h" 46 #include "core/dom/Document.h"
47 #include "core/dom/DocumentFragment.h" 47 #include "core/dom/DocumentFragment.h"
(...skipping 2722 matching lines...) Expand 10 before | Expand all | Expand 10 after
2770 node->showTreeForThis(); 2770 node->showTreeForThis();
2771 } 2771 }
2772 2772
2773 void showNodePath(const WebCore::Node* node) 2773 void showNodePath(const WebCore::Node* node)
2774 { 2774 {
2775 if (node) 2775 if (node)
2776 node->showNodePathForThis(); 2776 node->showNodePathForThis();
2777 } 2777 }
2778 2778
2779 #endif 2779 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/NodeRenderingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698