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

Unified Diff: Source/platform/graphics/BitmapPattern.h

Issue 1001703003: Take NativeImageSkia out behind the woodshed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Switch to skia-style API (return bool instead of SkBitmap) Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/graphics/BitmapImageTest.cpp ('k') | Source/platform/graphics/BitmapPattern.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/BitmapPattern.h
diff --git a/Source/platform/graphics/BitmapPattern.h b/Source/platform/graphics/BitmapPattern.h
index ba5a5a9f9e9d1642f3f15963675cbb371f9f4364..8726156dbba726a9452380555fc3417e92613641 100644
--- a/Source/platform/graphics/BitmapPattern.h
+++ b/Source/platform/graphics/BitmapPattern.h
@@ -6,6 +6,7 @@
#define BitmapPattern_h
#include "platform/graphics/BitmapPatternBase.h"
+#include "third_party/skia/include/core/SkBitmap.h"
namespace blink {
@@ -27,7 +28,7 @@ protected:
private:
BitmapPattern(PassRefPtr<Image>, RepeatMode);
- RefPtr<NativeImageSkia> m_tileImage;
+ SkBitmap m_tileImage;
};
} // namespace
« no previous file with comments | « Source/platform/graphics/BitmapImageTest.cpp ('k') | Source/platform/graphics/BitmapPattern.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698