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

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

Issue 1299323005: blink: Add backdrop-filter support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: one more Created 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ComputedStyleCSSValueMapping_h 5 #ifndef ComputedStyleCSSValueMapping_h
6 #define ComputedStyleCSSValueMapping_h 6 #define ComputedStyleCSSValueMapping_h
7 7
8 #include "core/CSSPropertyNames.h" 8 #include "core/CSSPropertyNames.h"
9 #include "core/css/CSSValue.h" 9 #include "core/css/CSSValue.h"
10 #include "wtf/Allocator.h" 10 #include "wtf/Allocator.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class CSSPrimitiveValue; 14 class CSSPrimitiveValue;
15 class LayoutObject; 15 class LayoutObject;
16 class ComputedStyle; 16 class ComputedStyle;
17 class FilterOperations;
17 class ShadowData; 18 class ShadowData;
18 class ShadowList; 19 class ShadowList;
19 class StyleColor; 20 class StyleColor;
20 class Node; 21 class Node;
21 22
22 class ComputedStyleCSSValueMapping { 23 class ComputedStyleCSSValueMapping {
23 STATIC_ONLY(ComputedStyleCSSValueMapping); 24 STATIC_ONLY(ComputedStyleCSSValueMapping);
24 public: 25 public:
25 // FIXME: Resolve computed auto alignment in applyProperty/ComputedStyle and remove this non-const styledNode parameter. 26 // FIXME: Resolve computed auto alignment in applyProperty/ComputedStyle and remove this non-const styledNode parameter.
26 static PassRefPtrWillBeRawPtr<CSSValue> get(CSSPropertyID, const ComputedSty le&, const LayoutObject* = nullptr, Node* styledNode = nullptr, bool allowVisite dStyle = false); 27 static PassRefPtrWillBeRawPtr<CSSValue> get(CSSPropertyID, const ComputedSty le&, const LayoutObject* = nullptr, Node* styledNode = nullptr, bool allowVisite dStyle = false);
27 private: 28 private:
28 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(co nst ComputedStyle&, const StyleColor&); 29 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(co nst ComputedStyle&, const StyleColor&);
29 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowData(const ShadowData& , const ComputedStyle&, bool useSpread); 30 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowData(const ShadowData& , const ComputedStyle&, bool useSpread);
30 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowList(const ShadowList* , const ComputedStyle&, bool useSpread); 31 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowList(const ShadowList* , const ComputedStyle&, bool useSpread);
31 static PassRefPtrWillBeRawPtr<CSSValue> valueForFilter(const ComputedStyle&) ; 32 static PassRefPtrWillBeRawPtr<CSSValue> valueForFilter(const ComputedStyle&, const FilterOperations&);
32 static PassRefPtrWillBeRawPtr<CSSValue> valueForFont(const ComputedStyle&); 33 static PassRefPtrWillBeRawPtr<CSSValue> valueForFont(const ComputedStyle&);
33 }; 34 };
34 35
35 } // namespace blink 36 } // namespace blink
36 37
37 #endif // ComputedStyleCSSValueMapping_h 38 #endif // ComputedStyleCSSValueMapping_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698