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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/css/CSSCanvasValue.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 19 matching lines...) Expand all
30 #include "wtf/text/AtomicStringHash.h" 30 #include "wtf/text/AtomicStringHash.h"
31 #include "wtf/text/WTFString.h" 31 #include "wtf/text/WTFString.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class CSSPrimitiveValue; 35 class CSSPrimitiveValue;
36 class CSSValueList; 36 class CSSValueList;
37 class ExceptionState; 37 class ExceptionState;
38 class MutableStylePropertySet; 38 class MutableStylePropertySet;
39 class Node; 39 class Node;
40 class RenderObject; 40 class LayoutObject;
41 class RenderStyle; 41 class RenderStyle;
42 class ShadowData; 42 class ShadowData;
43 class ShadowList; 43 class ShadowList;
44 class StyleColor; 44 class StyleColor;
45 class StylePropertyShorthand; 45 class StylePropertyShorthand;
46 46
47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; 47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true };
48 48
49 class CSSComputedStyleDeclaration final : public CSSStyleDeclaration { 49 class CSSComputedStyleDeclaration final : public CSSStyleDeclaration {
50 public: 50 public:
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 PseudoId m_pseudoElementSpecifier; 106 PseudoId m_pseudoElementSpecifier;
107 bool m_allowVisitedStyle; 107 bool m_allowVisitedStyle;
108 #if !ENABLE(OILPAN) 108 #if !ENABLE(OILPAN)
109 unsigned m_refCount; 109 unsigned m_refCount;
110 #endif 110 #endif
111 }; 111 };
112 112
113 } // namespace blink 113 } // namespace blink
114 114
115 #endif // CSSComputedStyleDeclaration_h 115 #endif // CSSComputedStyleDeclaration_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSCanvasValue.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698