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

Unified Diff: Source/core/rendering/RenderTableSection.h

Issue 620753006: Rendering API cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address jchaffraix remarks Created 6 years, 2 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: Source/core/rendering/RenderTableSection.h
diff --git a/Source/core/rendering/RenderTableSection.h b/Source/core/rendering/RenderTableSection.h
index f87164256da1abb398944a6c6ceb01ec12b8212c..c3e1a5e5f8516d314e5ccec93a08ea93418e5778 100644
--- a/Source/core/rendering/RenderTableSection.h
+++ b/Source/core/rendering/RenderTableSection.h
@@ -52,8 +52,8 @@ public:
unsigned start() const { return m_start; }
unsigned end() const { return m_end; }
- unsigned& start() { return m_start; }
- unsigned& end() { return m_end; }
+ void decreaseStart() { --m_start; }
+ void increaseEnd() { ++m_end; }
private:
unsigned m_start;

Powered by Google App Engine
This is Rietveld 408576698