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

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

Issue 2787183002: Rename members of StyleSurroundData and ComputedStyle. (Closed)
Patch Set: Rebase Created 3 years, 9 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/StyleSurroundData.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/StyleSurroundData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleSurroundData.cpp b/third_party/WebKit/Source/core/style/StyleSurroundData.cpp
index 5bdc2afc3861e94360383522c395ebf2328b52e8..1509880099eacf52499b9b8bfee591bcdd0a58ab 100644
--- a/third_party/WebKit/Source/core/style/StyleSurroundData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleSurroundData.cpp
@@ -23,7 +23,7 @@
namespace blink {
-StyleSurroundData::StyleSurroundData() : margin(Fixed), padding(Fixed) {}
+StyleSurroundData::StyleSurroundData() : m_margin(Fixed), m_padding(Fixed) {}
StyleSurroundData::StyleSurroundData(const StyleSurroundData& o)
: RefCounted<StyleSurroundData>(),
@@ -31,14 +31,14 @@ StyleSurroundData::StyleSurroundData(const StyleSurroundData& o)
m_right(o.m_right),
m_top(o.m_top),
m_bottom(o.m_bottom),
- margin(o.margin),
- padding(o.padding),
- border(o.border) {}
+ m_margin(o.m_margin),
+ m_padding(o.m_padding),
+ m_border(o.m_border) {}
bool StyleSurroundData::operator==(const StyleSurroundData& o) const {
return m_left == o.m_left && m_right == o.m_right && m_top == o.m_top &&
- m_bottom == o.m_bottom && margin == o.margin && padding == o.padding &&
- border == o.border;
+ m_bottom == o.m_bottom && m_margin == o.m_margin &&
+ m_padding == o.m_padding && m_border == o.m_border;
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleSurroundData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698