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

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

Issue 2844163002: Remove public methods on StyleBoxData and rename member. (Closed)
Patch Set: Rebase 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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleBoxData.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/StyleBoxData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleBoxData.cpp b/third_party/WebKit/Source/core/style/StyleBoxData.cpp
index 1e2e7546cdbc4d414c5b62a082435701523bbd31..9f52a869a0f91804714c5aa45f691e8fc5c90a19 100644
--- a/third_party/WebKit/Source/core/style/StyleBoxData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleBoxData.cpp
@@ -48,8 +48,8 @@ bool StyleBoxData::operator==(const StyleBoxData& o) const {
return width_ == o.width_ && height_ == o.height_ &&
min_width_ == o.min_width_ && max_width_ == o.max_width_ &&
min_height_ == o.min_height_ && max_height_ == o.max_height_ &&
- vertical_align_ == o.vertical_align_ && z_index_ == o.z_index_ &&
- has_auto_z_index_ == o.has_auto_z_index_ &&
+ vertical_align_length_ == o.vertical_align_length_ &&
+ z_index_ == o.z_index_ && has_auto_z_index_ == o.has_auto_z_index_ &&
box_sizing_ == o.box_sizing_ &&
box_decoration_break_ == o.box_decoration_break_;
}
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleBoxData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698