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

Side by Side Diff: third_party/WebKit/Source/core/paint/InlinePainter.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 // 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 InlinePainter_h 5 #ifndef InlinePainter_h
6 #define InlinePainter_h 6 #define InlinePainter_h
7 7
8 #include "core/style/ComputedStyleConstants.h" 8 #include "core/style/ComputedStyleConstants.h"
9 #include "wtf/Allocator.h" 9 #include "platform/wtf/Allocator.h"
10 #include "wtf/Vector.h" 10 #include "platform/wtf/Vector.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class LayoutPoint; 14 class LayoutPoint;
15 struct PaintInfo; 15 struct PaintInfo;
16 class LayoutInline; 16 class LayoutInline;
17 17
18 class InlinePainter { 18 class InlinePainter {
19 STACK_ALLOCATED(); 19 STACK_ALLOCATED();
20 20
21 public: 21 public:
22 InlinePainter(const LayoutInline& layout_inline) 22 InlinePainter(const LayoutInline& layout_inline)
23 : layout_inline_(layout_inline) {} 23 : layout_inline_(layout_inline) {}
24 24
25 void Paint(const PaintInfo&, const LayoutPoint& paint_offset); 25 void Paint(const PaintInfo&, const LayoutPoint& paint_offset);
26 26
27 private: 27 private:
28 const LayoutInline& layout_inline_; 28 const LayoutInline& layout_inline_;
29 }; 29 };
30 30
31 } // namespace blink 31 } // namespace blink
32 32
33 #endif // InlinePainter_h 33 #endif // InlinePainter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698