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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2563913002: Added functionality in ComputedStyleBase to use platform/ types (Closed)
Patch Set: Rebase Created 3 years, 12 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 4494a8547728b0ab2f294566a011778a6e218ee9..4c749ded6b961cde52e888ce72bece2406fdfd4e 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -812,8 +812,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
m_inheritedData.m_rtlOrdering != other.m_inheritedData.m_rtlOrdering ||
textAlign() != other.textAlign() ||
textTransform() != other.textTransform() ||
- m_inheritedData.m_direction != other.m_inheritedData.m_direction ||
- whiteSpace() != other.whiteSpace() ||
+ direction() != other.direction() || whiteSpace() != other.whiteSpace() ||
m_inheritedData.m_writingMode != other.m_inheritedData.m_writingMode)
return true;
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698