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

Unified Diff: third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp

Issue 2403423002: [CSSTypedOM] Computed StylePropertyMap use ComputedStyle for Lengths (Closed)
Patch Set: Use StyleValueFactory & ComputedStyleCSSValueMapping for unsupported Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
index eaf9dcf7b6a762ff65b025f1a54bdfb01465c87b..ec017d9bafe9e1c6aa84ea269c255665b7f8f987 100644
--- a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
@@ -9,8 +9,9 @@ namespace blink {
FilteredComputedStylePropertyMap::FilteredComputedStylePropertyMap(
CSSComputedStyleDeclaration* computedStyleDeclaration,
const Vector<CSSPropertyID>& nativeProperties,
- const Vector<AtomicString>& customProperties)
- : ComputedStylePropertyMap(computedStyleDeclaration) {
+ const Vector<AtomicString>& customProperties,
+ Node* node)
+ : ComputedStylePropertyMap(node) {
for (const auto& nativeProperty : nativeProperties) {
m_nativeProperties.insert(nativeProperty);
}

Powered by Google App Engine
This is Rietveld 408576698