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

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

Issue 2798823002: Rewrite references to "wtf/" to "platform/wtf/" in platform/graphics. (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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 PaintArtifact_h 5 #ifndef PaintArtifact_h
6 #define PaintArtifact_h 6 #define PaintArtifact_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/paint/DisplayItemList.h" 9 #include "platform/graphics/paint/DisplayItemList.h"
10 #include "platform/graphics/paint/PaintCanvas.h" 10 #include "platform/graphics/paint/PaintCanvas.h"
11 #include "platform/graphics/paint/PaintChunk.h" 11 #include "platform/graphics/paint/PaintChunk.h"
12 #include "wtf/Allocator.h" 12 #include "platform/wtf/Allocator.h"
13 #include "wtf/Noncopyable.h" 13 #include "platform/wtf/Noncopyable.h"
14 #include "wtf/Vector.h" 14 #include "platform/wtf/Vector.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class GraphicsContext; 18 class GraphicsContext;
19 class WebDisplayItemList; 19 class WebDisplayItemList;
20 20
21 // The output of painting, consisting of a series of drawings in paint order, 21 // The output of painting, consisting of a series of drawings in paint order,
22 // partitioned into discontiguous chunks with a common set of paint properties 22 // partitioned into discontiguous chunks with a common set of paint properties
23 // (i.e. associated with the same transform, clip, effects, etc.). 23 // (i.e. associated with the same transform, clip, effects, etc.).
24 // 24 //
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 private: 89 private:
90 DisplayItemList m_displayItemList; 90 DisplayItemList m_displayItemList;
91 Vector<PaintChunk> m_paintChunks; 91 Vector<PaintChunk> m_paintChunks;
92 bool m_isSuitableForGpuRasterization; 92 bool m_isSuitableForGpuRasterization;
93 }; 93 };
94 94
95 } // namespace blink 95 } // namespace blink
96 96
97 #endif // PaintArtifact_h 97 #endif // PaintArtifact_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698