Index: Source/platform/graphics/Image.cpp |
diff --git a/Source/platform/graphics/Image.cpp b/Source/platform/graphics/Image.cpp |
index 2ee59a095d90f4dccdd92d9ec662ed9659eb4d03..543f1ee370426dba679a2181238ad724ed33c217 100644 |
--- a/Source/platform/graphics/Image.cpp |
+++ b/Source/platform/graphics/Image.cpp |
@@ -39,6 +39,7 @@ |
#include "platform/graphics/GraphicsContextStateSaver.h" |
#include "public/platform/Platform.h" |
#include "public/platform/WebData.h" |
+#include "third_party/skia/include/core/SkImage.h" |
#include "wtf/MainThread.h" |
#include "wtf/StdLibExtras.h" |
@@ -244,4 +245,9 @@ PassRefPtr<Image> Image::imageForDefaultFrame() |
return image.release(); |
} |
+PassRefPtr<SkImage> Image::image() |
Justin Novosad
2014/09/30 17:37:56
Confusing because blink has an Image type. should
Rémi Piotaix
2014/09/30 17:48:12
Done.
|
+{ |
+ return nullptr; |
+} |
+ |
} // namespace blink |