OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef NinePieceImagePainter_h | |
6 #define NinePieceImagePainter_h | |
7 | |
8 #include "platform/LayoutUnit.h" | |
9 #include "third_party/skia/include/core/SkXfermode.h" | |
10 | |
11 namespace blink { | |
12 | |
13 class ComputedStyle; | |
14 class GraphicsContext; | |
15 class LayoutBoxModelObject; | |
16 class LayoutRect; | |
17 class NinePieceImage; | |
18 class BorderImageLength; | |
19 | |
20 class NinePieceImagePainter { | |
pdr.
2015/06/02 01:41:51
Can you add STACK_ALLOCATED() here?
davve
2015/06/02 07:18:52
Done.
| |
21 public: | |
22 NinePieceImagePainter(LayoutBoxModelObject&); | |
23 | |
24 bool paint(GraphicsContext*, const LayoutRect&, const ComputedStyle&, const NinePieceImage&, SkXfermode::Mode); | |
pdr.
2015/06/02 01:41:50
Can you make this const?
Maybe best for a followu
davve
2015/06/02 07:18:52
Done.
| |
25 | |
26 private: | |
27 static LayoutUnit computeBorderImageSide(const BorderImageLength& borderSlic e, LayoutUnit borderSide, LayoutUnit imageSide, LayoutUnit boxExtent); | |
pdr.
2015/06/02 01:41:51
Nit, maybe for a followup: should these LayoutUnit
davve
2015/06/02 07:18:52
Will look into it in a follow-up.
| |
28 | |
29 LayoutBoxModelObject& m_layoutObject; | |
30 }; | |
31 | |
32 } // namespace blink | |
33 | |
34 #endif // NinePieceImagePainter_h | |
OLD | NEW |