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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintResult.h

Issue 2430313004: Paint collapsed borders of a table as one display item (Closed)
Patch Set: - Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PaintResult_h
6 #define PaintResult_h
7
8 namespace blink {
9
10 // Used as the return type of some paint methods.
11 enum PaintResult {
12 // The layer/object is fully painted. This includes cases that nothing needs
13 // painting regardless of the paint rect.
14 FullyPainted,
15 // Some part of the layer/object is out of the paint rect and may be not fully
16 // painted. The results cannot be cached because they may change when paint
17 // rect changes.
18 MayBeClippedByPaintDirtyRect,
19
20 MaxPaintResult = MayBeClippedByPaintDirtyRect,
21 };
22
23 } // namespace blink
24
25 #endif // PaintResult.h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698