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

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

Issue 13839016: Remove CSS_SHADERS compile-time flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
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 21 matching lines...) Expand all
32 class CSSValueList; 32 class CSSValueList;
33 class Color; 33 class Color;
34 class Node; 34 class Node;
35 class RenderObject; 35 class RenderObject;
36 class RenderStyle; 36 class RenderStyle;
37 class SVGPaint; 37 class SVGPaint;
38 class ShadowData; 38 class ShadowData;
39 class StylePropertySet; 39 class StylePropertySet;
40 class StylePropertyShorthand; 40 class StylePropertyShorthand;
41 41
42 #if ENABLE(CSS_SHADERS)
43 class CustomFilterNumberParameter; 42 class CustomFilterNumberParameter;
44 class CustomFilterParameter; 43 class CustomFilterParameter;
45 #endif
46 44
47 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true }; 45 enum EUpdateLayout { DoNotUpdateLayout = false, UpdateLayout = true };
48 46
49 class CSSComputedStyleDeclaration : public CSSStyleDeclaration { 47 class CSSComputedStyleDeclaration : public CSSStyleDeclaration {
50 public: 48 public:
51 static PassRefPtr<CSSComputedStyleDeclaration> create(PassRefPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String()) 49 static PassRefPtr<CSSComputedStyleDeclaration> create(PassRefPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String())
52 { 50 {
53 return adoptRef(new CSSComputedStyleDeclaration(node, allowVisitedStyle, pseudoElementName)); 51 return adoptRef(new CSSComputedStyleDeclaration(node, allowVisitedStyle, pseudoElementName));
54 } 52 }
55 virtual ~CSSComputedStyleDeclaration(); 53 virtual ~CSSComputedStyleDeclaration();
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 119
122 RefPtr<Node> m_node; 120 RefPtr<Node> m_node;
123 PseudoId m_pseudoElementSpecifier; 121 PseudoId m_pseudoElementSpecifier;
124 bool m_allowVisitedStyle; 122 bool m_allowVisitedStyle;
125 unsigned m_refCount; 123 unsigned m_refCount;
126 }; 124 };
127 125
128 } // namespace WebCore 126 } // namespace WebCore
129 127
130 #endif // CSSComputedStyleDeclaration_h 128 #endif // CSSComputedStyleDeclaration_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698