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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines 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
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 EmbeddedObjectPainter_h 5 #ifndef EmbeddedObjectPainter_h
6 #define EmbeddedObjectPainter_h 6 #define EmbeddedObjectPainter_h
7 7
8 #include "wtf/Allocator.h" 8 #include "wtf/Allocator.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 struct PaintInfo; 12 struct PaintInfo;
13 class FloatRect;
14 class Font;
15 class LayoutEmbeddedObject; 13 class LayoutEmbeddedObject;
16 class LayoutPoint; 14 class LayoutPoint;
17 class Path;
18 class TextRun;
19 15
20 class EmbeddedObjectPainter { 16 class EmbeddedObjectPainter {
21 STACK_ALLOCATED(); 17 STACK_ALLOCATED();
22 18
23 public: 19 public:
24 EmbeddedObjectPainter(const LayoutEmbeddedObject& layoutEmbeddedObject) 20 EmbeddedObjectPainter(const LayoutEmbeddedObject& layoutEmbeddedObject)
25 : m_layoutEmbeddedObject(layoutEmbeddedObject) {} 21 : m_layoutEmbeddedObject(layoutEmbeddedObject) {}
26 22
27 void paintReplaced(const PaintInfo&, const LayoutPoint& paintOffset); 23 void paintReplaced(const PaintInfo&, const LayoutPoint& paintOffset);
28 24
29 private: 25 private:
30 const LayoutEmbeddedObject& m_layoutEmbeddedObject; 26 const LayoutEmbeddedObject& m_layoutEmbeddedObject;
31 }; 27 };
32 28
33 } // namespace blink 29 } // namespace blink
34 30
35 #endif // EmbeddedObjectPainter_h 31 #endif // EmbeddedObjectPainter_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/EllipsisBoxPainter.h ('k') | third_party/WebKit/Source/core/paint/FilterPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698