| OLD | NEW |
| 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" |
| 12 #include "wtf/Noncopyable.h" |
| 11 #include "wtf/OwnPtr.h" | 13 #include "wtf/OwnPtr.h" |
| 12 | 14 |
| 13 namespace blink { | 15 namespace blink { |
| 14 | 16 |
| 15 // When slimming paint ships we can remove this SkPicture abstraction and | 17 // When slimming paint ships we can remove this SkPicture abstraction and |
| 16 // rely on PaintController here. | 18 // rely on PaintController here. |
| 17 class SkPictureBuilder { | 19 class SkPictureBuilder final { |
| 18 WTF_MAKE_NONCOPYABLE(SkPictureBuilder); | 20 WTF_MAKE_NONCOPYABLE(SkPictureBuilder); |
| 19 STACK_ALLOCATED(); | 21 STACK_ALLOCATED(); |
| 20 public: | 22 public: |
| 21 SkPictureBuilder(const FloatRect& bounds, SkMetaData* metaData = 0, Graphics
Context* containingContext = 0) | 23 SkPictureBuilder(const FloatRect& bounds, SkMetaData* metaData = 0, Graphics
Context* containingContext = 0) |
| 22 : m_bounds(bounds) | 24 : m_bounds(bounds) |
| 23 { | 25 { |
| 24 GraphicsContext::DisabledMode disabledMode = GraphicsContext::NothingDis
abled; | 26 GraphicsContext::DisabledMode disabledMode = GraphicsContext::NothingDis
abled; |
| 25 if (containingContext && containingContext->contextDisabled()) | 27 if (containingContext && containingContext->contextDisabled()) |
| 26 disabledMode = GraphicsContext::FullyDisabled; | 28 disabledMode = GraphicsContext::FullyDisabled; |
| 27 | 29 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 46 | 48 |
| 47 private: | 49 private: |
| 48 OwnPtr<PaintController> m_paintController; | 50 OwnPtr<PaintController> m_paintController; |
| 49 OwnPtr<GraphicsContext> m_context; | 51 OwnPtr<GraphicsContext> m_context; |
| 50 FloatRect m_bounds; | 52 FloatRect m_bounds; |
| 51 }; | 53 }; |
| 52 | 54 |
| 53 } // namespace blink | 55 } // namespace blink |
| 54 | 56 |
| 55 #endif // SkPictureBuilder_h | 57 #endif // SkPictureBuilder_h |
| OLD | NEW |