Chromium Code Reviews| Index: webkit/plugins/ppapi/content_decryptor_delegate.h |
| diff --git a/webkit/plugins/ppapi/content_decryptor_delegate.h b/webkit/plugins/ppapi/content_decryptor_delegate.h |
| index 22f081503f76886d17863f04588c6a252a36b528..000ea2df760ccbc63f238c243a0c5e6c4fc88744 100644 |
| --- a/webkit/plugins/ppapi/content_decryptor_delegate.h |
| +++ b/webkit/plugins/ppapi/content_decryptor_delegate.h |
| @@ -14,6 +14,8 @@ |
| #include "ppapi/c/private/pp_content_decryptor.h" |
| #include "ppapi/c/private/ppp_content_decryptor_private.h" |
| #include "ppapi/shared_impl/scoped_pp_resource.h" |
| +#include "ui/gfx/rect.h" |
| +#include "ui/gfx/size.h" |
|
ddorwin
2012/12/01 04:44:41
We shouldn't need two includes for a single type.
xhwang
2012/12/01 05:38:43
Done.
|
| #include "webkit/plugins/webkit_plugins_export.h" |
| namespace media { |
| @@ -115,6 +117,8 @@ class WEBKIT_PLUGINS_EXPORT ContentDecryptorDelegate { |
| media::DecryptorClient* decryptor_client_; |
| + gfx::Size natural_size_; |
| + |
| // Request ID for tracking pending content decryption callbacks. |
| // Note that zero indicates an invalid request ID. |
| // TODO(xhwang): Add completion callbacks for Reset/Stop and remove the use |