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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h

Issue 1458353004: Revert of Clip scrollbars to box bounds when they don't fit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/paint/BlockPainter.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DisplayItem_h 5 #ifndef DisplayItem_h
6 #define DisplayItem_h 6 #define DisplayItem_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/ContiguousContainer.h" 9 #include "platform/graphics/ContiguousContainer.h"
10 #include "platform/graphics/paint/DisplayItemClient.h" 10 #include "platform/graphics/paint/DisplayItemClient.h"
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ClipFrameToVisibleContentRect, 120 ClipFrameToVisibleContentRect,
121 ClipFrameScrollbars, 121 ClipFrameScrollbars,
122 ClipLayerBackground, 122 ClipLayerBackground,
123 ClipLayerColumnBounds, 123 ClipLayerColumnBounds,
124 ClipLayerFilter, 124 ClipLayerFilter,
125 ClipLayerForeground, 125 ClipLayerForeground,
126 ClipLayerParent, 126 ClipLayerParent,
127 ClipLayerOverflowControls, 127 ClipLayerOverflowControls,
128 ClipNodeImage, 128 ClipNodeImage,
129 ClipPopupListBoxFrame, 129 ClipPopupListBoxFrame,
130 ClipScrollbarsToBoxBounds,
131 ClipSelectionImage, 130 ClipSelectionImage,
132 PageWidgetDelegateClip, 131 PageWidgetDelegateClip,
133 ClipPrintedPage, 132 ClipPrintedPage,
134 ClipLast = ClipPrintedPage, 133 ClipLast = ClipPrintedPage,
135 134
136 EndClipFirst, 135 EndClipFirst,
137 EndClipLast = EndClipFirst + ClipLast - ClipFirst, 136 EndClipLast = EndClipFirst + ClipLast - ClipFirst,
138 137
139 FloatClipFirst, 138 FloatClipFirst,
140 FloatClipPaintPhaseFirst = FloatClipFirst, 139 FloatClipPaintPhaseFirst = FloatClipFirst,
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; 388 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0;
390 #endif 389 #endif
391 390
392 private: 391 private:
393 bool isEnd() const final { return true; } 392 bool isEnd() const final { return true; }
394 }; 393 };
395 394
396 } // namespace blink 395 } // namespace blink
397 396
398 #endif // DisplayItem_h 397 #endif // DisplayItem_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/BlockPainter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698