Chromium Code Reviews| Index: Source/core/style/StyleRareNonInheritedData.h | 
| diff --git a/Source/core/style/StyleRareNonInheritedData.h b/Source/core/style/StyleRareNonInheritedData.h | 
| index afff968419e68808902418702559d85c5ced4b53..8bb5f50fb79037fedc09cb2849f7deeeb60e5316 100644 | 
| --- a/Source/core/style/StyleRareNonInheritedData.h | 
| +++ b/Source/core/style/StyleRareNonInheritedData.h | 
| @@ -38,6 +38,7 @@ | 
| #include "core/style/NinePieceImage.h" | 
| #include "core/style/ShapeValue.h" | 
| #include "core/style/StyleContentAlignmentData.h" | 
| +#include "core/style/StyleScrollSnapData.h" | 
| #include "core/style/StyleSelfAlignmentData.h" | 
| #include "platform/LengthPoint.h" | 
| #include "wtf/OwnPtr.h" | 
| @@ -117,6 +118,8 @@ public: | 
| DataRef<StyleGridData> m_grid; | 
| DataRef<StyleGridItemData> m_gridItem; | 
| + DataRef<StyleScrollSnapData> m_scrollSnap; | 
| + | 
| 
 
Timothy Loh
2015/05/28 07:09:27
nit: extra blank line?
 
majidvp
2015/06/01 20:06:37
Done.
 
 | 
| OwnPtr<ContentData> m_content; | 
| OwnPtr<CounterDirectiveMap> m_counterDirectives; | 
| @@ -190,6 +193,8 @@ public: | 
| unsigned m_scrollBlocksOn: 3; // WebScrollBlocksOn | 
| + unsigned m_scrollSnapType: 2; // ScrollSnapType | 
| + | 
| // Plugins require accelerated compositing for reasons external to blink. | 
| // In which case, we need to update the ComputedStyle on the LayoutEmbeddedObject, | 
| // so store this bit so that the style actually changes when the plugin |