Chromium Code Reviews| Index: third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h |
| diff --git a/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h b/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h |
| index 2c2a6d26259b2c3ee9f26d91898c47820cc252b7..da6417c9fb877ca48ac73b53d845ef4095bcee17 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h |
| +++ b/third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h |
| @@ -5,8 +5,11 @@ |
| #ifndef StaticBitmapImage_h |
| #define StaticBitmapImage_h |
| +#include "gpu/command_buffer/common/mailbox.h" |
| +#include "gpu/command_buffer/common/sync_token.h" |
| #include "platform/graphics/Image.h" |
| #include "third_party/khronos/GLES2/gl2.h" |
| +#include "third_party/skia/include/core/SkImage.h" |
| #include "third_party/skia/include/core/SkRefCnt.h" |
| namespace blink { |
| @@ -36,6 +39,10 @@ public: |
| virtual bool hasMailbox() { return false; } |
| virtual void transfer() { } |
| + virtual gpu::Mailbox getMailbox() { return gpu::Mailbox(); } |
| + virtual gpu::SyncToken getSyncToken() { return gpu::SyncToken(); } |
| + virtual unsigned getTextureId() { return 0; } |
|
Justin Novosad
2016/09/12 13:53:25
Is this still needed?
xidachen
2016/09/14 01:33:12
Done.
|
| + |
| protected: |
| StaticBitmapImage(sk_sp<SkImage>); |
| StaticBitmapImage() { } // empty constructor for derived class. |