| Index: content/common/gpu/media/va_surface.h
|
| diff --git a/content/common/gpu/media/va_surface.h b/content/common/gpu/media/va_surface.h
|
| index c76c11fea28f35e9779fe6fd1199703694829d3d..8901fa6b452b5ba0fdce558bd7b52cfd0a2ab6d9 100644
|
| --- a/content/common/gpu/media/va_surface.h
|
| +++ b/content/common/gpu/media/va_surface.h
|
| @@ -90,6 +90,7 @@ class CONTENT_EXPORT VASurface : public base::RefCountedThreadSafe<VASurface> {
|
|
|
| VASurface(VASurfaceID va_surface_id,
|
| const gfx::Size& size,
|
| + unsigned int format,
|
| const ReleaseCB& release_cb);
|
|
|
| VASurfaceID id() {
|
| @@ -97,6 +98,7 @@ class CONTENT_EXPORT VASurface : public base::RefCountedThreadSafe<VASurface> {
|
| }
|
|
|
| const gfx::Size& size() const { return size_; }
|
| + unsigned int format() const { return format_; }
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<VASurface>;
|
| @@ -104,6 +106,7 @@ class CONTENT_EXPORT VASurface : public base::RefCountedThreadSafe<VASurface> {
|
|
|
| const VASurfaceID va_surface_id_;
|
| gfx::Size size_;
|
| + unsigned int format_;
|
| ReleaseCB release_cb_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(VASurface);
|
|
|