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

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

Issue 541383003: Clean up forward declarations in Source/core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/css/CSSCharsetRule.h ('k') | Source/core/css/CSSCrossfadeValue.h » ('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 24 matching lines...) Expand all
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 RenderObject;
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 StylePropertySet;
46 class StylePropertyShorthand; 45 class StylePropertyShorthand;
47 46
48 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; 47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true };
49 48
50 class CSSComputedStyleDeclaration FINAL : public CSSStyleDeclaration { 49 class CSSComputedStyleDeclaration FINAL : public CSSStyleDeclaration {
51 public: 50 public:
52 static PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> create(PassRefPtr WillBeRawPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoEle mentName = String()) 51 static PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> create(PassRefPtr WillBeRawPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoEle mentName = String())
53 { 52 {
54 return adoptRefWillBeNoop(new CSSComputedStyleDeclaration(node, allowVis itedStyle, pseudoElementName)); 53 return adoptRefWillBeNoop(new CSSComputedStyleDeclaration(node, allowVis itedStyle, pseudoElementName));
55 } 54 }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 PseudoId m_pseudoElementSpecifier; 118 PseudoId m_pseudoElementSpecifier;
120 bool m_allowVisitedStyle; 119 bool m_allowVisitedStyle;
121 #if !ENABLE(OILPAN) 120 #if !ENABLE(OILPAN)
122 unsigned m_refCount; 121 unsigned m_refCount;
123 #endif 122 #endif
124 }; 123 };
125 124
126 } // namespace blink 125 } // namespace blink
127 126
128 #endif // CSSComputedStyleDeclaration_h 127 #endif // CSSComputedStyleDeclaration_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSCharsetRule.h ('k') | Source/core/css/CSSCrossfadeValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698