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

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

Issue 1512803004: Use refs for GraphicsContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarTheme
Patch Set: Created 5 years 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 SkPictureBuilder_h 5 #ifndef SkPictureBuilder_h
6 #define SkPictureBuilder_h 6 #define SkPictureBuilder_h
7 7
8 #include "platform/RuntimeEnabledFeatures.h" 8 #include "platform/RuntimeEnabledFeatures.h"
9 #include "platform/graphics/GraphicsContext.h" 9 #include "platform/graphics/GraphicsContext.h"
10 #include "platform/graphics/paint/PaintController.h" 10 #include "platform/graphics/paint/PaintController.h"
11 #include "wtf/Allocator.h" 11 #include "wtf/Allocator.h"
12 #include "wtf/Noncopyable.h" 12 #include "wtf/Noncopyable.h"
13 #include "wtf/OwnPtr.h" 13 #include "wtf/OwnPtr.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 // When slimming paint ships we can remove this SkPicture abstraction and 17 // When slimming paint ships we can remove this SkPicture abstraction and
18 // rely on PaintController here. 18 // rely on PaintController here.
19 class SkPictureBuilder final { 19 class SkPictureBuilder final {
20 WTF_MAKE_NONCOPYABLE(SkPictureBuilder); 20 WTF_MAKE_NONCOPYABLE(SkPictureBuilder);
21 STACK_ALLOCATED(); 21 STACK_ALLOCATED();
22 public: 22 public:
23 SkPictureBuilder(const FloatRect& bounds, SkMetaData* metaData = 0, Graphics Context* containingContext = 0) 23 SkPictureBuilder(const FloatRect& bounds, SkMetaData* metaData = nullptr, Gr aphicsContext* containingContext = nullptr)
24 : m_bounds(bounds) 24 : m_bounds(bounds)
25 { 25 {
26 GraphicsContext::DisabledMode disabledMode = GraphicsContext::NothingDis abled; 26 GraphicsContext::DisabledMode disabledMode = GraphicsContext::NothingDis abled;
27 if (containingContext && containingContext->contextDisabled()) 27 if (containingContext && containingContext->contextDisabled())
28 disabledMode = GraphicsContext::FullyDisabled; 28 disabledMode = GraphicsContext::FullyDisabled;
29 29
30 m_paintController = PaintController::create(); 30 m_paintController = PaintController::create();
31 m_paintController->beginSkippingCache(); 31 m_paintController->beginSkippingCache();
32 m_context = adoptPtr(new GraphicsContext(*m_paintController, disabledMod e, metaData)); 32 m_context = adoptPtr(new GraphicsContext(*m_paintController, disabledMod e, metaData));
33 33
(...skipping 16 matching lines...) Expand all
50 50
51 private: 51 private:
52 OwnPtr<PaintController> m_paintController; 52 OwnPtr<PaintController> m_paintController;
53 OwnPtr<GraphicsContext> m_context; 53 OwnPtr<GraphicsContext> m_context;
54 FloatRect m_bounds; 54 FloatRect m_bounds;
55 }; 55 };
56 56
57 } // namespace blink 57 } // namespace blink
58 58
59 #endif // SkPictureBuilder_h 59 #endif // SkPictureBuilder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698