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

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

Issue 2817663002: Rewrite references to "wtf/" to "platform/wtf/" in core/paint. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
6 * 6 *
7 * Other contributors: 7 * Other contributors:
8 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * Robert O'Callahan <roc+@cs.cmu.edu>
9 * David Baron <dbaron@fas.harvard.edu> 9 * David Baron <dbaron@fas.harvard.edu>
10 * Christian Biesinger <cbiesinger@web.de> 10 * Christian Biesinger <cbiesinger@web.de>
(...skipping 29 matching lines...) Expand all
40 * other provisions required by the MPL or the GPL, as the case may be. 40 * other provisions required by the MPL or the GPL, as the case may be.
41 * If you do not delete the provisions above, a recipient may use your 41 * If you do not delete the provisions above, a recipient may use your
42 * version of this file under any of the LGPL, the MPL or the GPL. 42 * version of this file under any of the LGPL, the MPL or the GPL.
43 */ 43 */
44 44
45 #ifndef PaintLayerPaintingInfo_h 45 #ifndef PaintLayerPaintingInfo_h
46 #define PaintLayerPaintingInfo_h 46 #define PaintLayerPaintingInfo_h
47 47
48 #include "core/paint/PaintPhase.h" 48 #include "core/paint/PaintPhase.h"
49 #include "platform/geometry/LayoutRect.h" 49 #include "platform/geometry/LayoutRect.h"
50 #include "wtf/Allocator.h" 50 #include "platform/wtf/Allocator.h"
51 51
52 namespace blink { 52 namespace blink {
53 53
54 class PaintLayer; 54 class PaintLayer;
55 55
56 enum PaintLayerFlag { 56 enum PaintLayerFlag {
57 kPaintLayerNoFlag = 0, 57 kPaintLayerNoFlag = 0,
58 kPaintLayerHaveTransparency = 1, 58 kPaintLayerHaveTransparency = 1,
59 kPaintLayerAppliedTransform = 1 << 1, 59 kPaintLayerAppliedTransform = 1 << 1,
60 kPaintLayerUncachedClipRects = 1 << 2, 60 kPaintLayerUncachedClipRects = 1 << 2,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 bool clip_to_dirty_rect; 103 bool clip_to_dirty_rect;
104 bool ancestor_has_clip_path_clipping; 104 bool ancestor_has_clip_path_clipping;
105 105
106 private: 106 private:
107 const GlobalPaintFlags global_paint_flags_; 107 const GlobalPaintFlags global_paint_flags_;
108 }; 108 };
109 109
110 } // namespace blink 110 } // namespace blink
111 111
112 #endif // PaintLayerPaintingInfo_h 112 #endif // PaintLayerPaintingInfo_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698