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

Side by Side Diff: Source/core/paint/NinePieceImagePainter.h

Issue 1164573003: Move NinePieceImage painting to a separate class (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « Source/core/paint/BoxPainter.cpp ('k') | Source/core/paint/NinePieceImagePainter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « Source/core/paint/BoxPainter.cpp ('k') | Source/core/paint/NinePieceImagePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698