Index: Source/platform/graphics/StaticBitmapPattern.h |
diff --git a/Source/platform/graphics/StaticBitmapPattern.h b/Source/platform/graphics/StaticBitmapPattern.h |
deleted file mode 100644 |
index 89a3eb8ab64ee9d88500518908e6c1f2e6739cdf..0000000000000000000000000000000000000000 |
--- a/Source/platform/graphics/StaticBitmapPattern.h |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef StaticBitmapPattern_h |
-#define StaticBitmapPattern_h |
- |
-#include "platform/graphics/BitmapPatternBase.h" |
- |
-namespace blink { |
- |
-class PLATFORM_EXPORT StaticBitmapPattern : public BitmapPatternBase { |
-public: |
- static PassRefPtr<Pattern> create(PassRefPtr<Image> tileImage, RepeatMode); |
- |
- ~StaticBitmapPattern() override; |
- |
-protected: |
- PassRefPtr<SkShader> createShader() override; |
- |
- SkImageInfo getBitmapInfo() override; |
- void drawBitmapToCanvas(SkCanvas&, SkPaint&) override; |
- |
-private: |
- StaticBitmapPattern(PassRefPtr<SkImage>, RepeatMode); |
- |
- RefPtr<SkImage> m_tileImage; |
-}; |
- |
-} // namespace |
- |
-#endif |