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

Unified Diff: Source/core/style/StyleRareNonInheritedData.cpp

Issue 1274263003: Revert of Delete AuthorStyleInfo and move its data into ComputedStyle.RareNonInheritedData. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | « Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/Source/core/style/StyleRareNonInheritedData.cpp b/Source/core/style/StyleRareNonInheritedData.cpp
index f5fbdcecd6b7c5a26be4025a21155311f7d0cfd1..ff6c76b708c17b61e61ab40b9ce5fb4d8e070368 100644
--- a/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/Source/core/style/StyleRareNonInheritedData.cpp
@@ -123,8 +123,6 @@
, m_hasInlineTransform(false)
, m_resize(ComputedStyle::initialResize())
, m_hasCompositorProxy(false)
- , m_hasAuthorBackground(false)
- , m_hasAuthorBorder(false)
{
m_maskBoxImage.setMaskDefaults();
}
@@ -202,8 +200,6 @@
, m_hasInlineTransform(o.m_hasInlineTransform)
, m_resize(o.m_resize)
, m_hasCompositorProxy(o.m_hasCompositorProxy)
- , m_hasAuthorBackground(o.m_hasAuthorBackground)
- , m_hasAuthorBorder(o.m_hasAuthorBorder)
{
}
@@ -284,9 +280,7 @@
&& m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcceleratedCompositingForExternalReasons
&& m_hasInlineTransform == o.m_hasInlineTransform
&& m_resize == o.m_resize
- && m_hasCompositorProxy == o.m_hasCompositorProxy
- && m_hasAuthorBackground == o.m_hasAuthorBackground
- && m_hasAuthorBorder == o.m_hasAuthorBorder;
+ && m_hasCompositorProxy == o.m_hasCompositorProxy;
}
bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInheritedData& o) const
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698