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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index 5ec3340c2b93f130642120bea15e2d3c7758d424..7639581fac045c8ef152e026ee66a7ce8a48018a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -738,15 +738,9 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
return m_bitfields.isOutOfFlowPositioned();
}
// relative or sticky positioning
- bool isInFlowPositioned() const {
- return m_bitfields.isInFlowPositioned();
- }
- bool isRelPositioned() const {
- return m_bitfields.isRelPositioned();
- }
- bool isStickyPositioned() const {
- return m_bitfields.isStickyPositioned();
- }
+ bool isInFlowPositioned() const { return m_bitfields.isInFlowPositioned(); }
+ bool isRelPositioned() const { return m_bitfields.isRelPositioned(); }
+ bool isStickyPositioned() const { return m_bitfields.isStickyPositioned(); }
bool isFixedPositioned() const {
return isOutOfFlowPositioned() && style()->position() == EPosition::kFixed;
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutMenuList.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698