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

Unified Diff: third_party/WebKit/Source/core/style/StyleSurroundData.h

Issue 2834603003: Split StyleSurroundData::padding into four individual Lengths. (Closed)
Patch Set: Split StyleSurroundData::padding into four individual Lengths. Created 3 years, 8 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/style/StyleSurroundData.h
diff --git a/third_party/WebKit/Source/core/style/StyleSurroundData.h b/third_party/WebKit/Source/core/style/StyleSurroundData.h
index 933c428bef31676aae1ea80448c0d1c4c6b7f4d9..9807fde336e7a5af33b56c0722f49ba65935505f 100644
--- a/third_party/WebKit/Source/core/style/StyleSurroundData.h
+++ b/third_party/WebKit/Source/core/style/StyleSurroundData.h
@@ -55,7 +55,10 @@ class CORE_EXPORT StyleSurroundData : public RefCounted<StyleSurroundData> {
Length margin_right_;
Length margin_top_;
Length margin_bottom_;
- LengthBox padding_;
+ Length padding_left_;
+ Length padding_right_;
+ Length padding_top_;
+ Length padding_bottom_;
BorderData border_;
private:
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/style/StyleSurroundData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698