| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 PaintRecordPattern_h | 5 #ifndef PaintRecordPattern_h |
| 6 #define PaintRecordPattern_h | 6 #define PaintRecordPattern_h |
| 7 | 7 |
| 8 #include "platform/geometry/FloatRect.h" | |
| 9 #include "platform/graphics/Pattern.h" | 8 #include "platform/graphics/Pattern.h" |
| 10 #include "third_party/skia/include/core/SkRefCnt.h" | 9 #include "third_party/skia/include/core/SkRefCnt.h" |
| 11 | 10 |
| 12 namespace blink { | 11 namespace blink { |
| 13 | 12 |
| 14 // TODO(enne): rename this | 13 // TODO(enne): rename this |
| 15 class PLATFORM_EXPORT PaintRecordPattern final : public Pattern { | 14 class PLATFORM_EXPORT PaintRecordPattern final : public Pattern { |
| 16 public: | 15 public: |
| 17 static PassRefPtr<PaintRecordPattern> Create(sk_sp<PaintRecord>, | 16 static PassRefPtr<PaintRecordPattern> Create(sk_sp<PaintRecord>, RepeatMode); |
| 18 const FloatRect& record_bounds, | |
| 19 RepeatMode); | |
| 20 | 17 |
| 21 ~PaintRecordPattern() override; | 18 ~PaintRecordPattern() override; |
| 22 | 19 |
| 23 protected: | 20 protected: |
| 24 sk_sp<PaintShader> CreateShader(const SkMatrix&) override; | 21 sk_sp<PaintShader> CreateShader(const SkMatrix&) override; |
| 25 | 22 |
| 26 private: | 23 private: |
| 27 PaintRecordPattern(sk_sp<PaintRecord>, | 24 PaintRecordPattern(sk_sp<PaintRecord>, RepeatMode); |
| 28 const FloatRect& record_bounds, | |
| 29 RepeatMode); | |
| 30 | 25 |
| 31 sk_sp<PaintRecord> tile_record_; | 26 sk_sp<PaintRecord> tile_record_; |
| 32 FloatRect tile_record_bounds_; | |
| 33 }; | 27 }; |
| 34 | 28 |
| 35 } // namespace blink | 29 } // namespace blink |
| 36 | 30 |
| 37 #endif | 31 #endif |
| OLD | NEW |