| Index: chromecast/public/cast_egl_platform.h
|
| diff --git a/chromecast/public/cast_egl_platform.h b/chromecast/public/cast_egl_platform.h
|
| index c93bd0fc941fd9bee5e01b7977fe0e6b18422bbf..c1350f6964f0a90073a5ac524a7d201fdf6902ce 100644
|
| --- a/chromecast/public/cast_egl_platform.h
|
| +++ b/chromecast/public/cast_egl_platform.h
|
| @@ -7,17 +7,13 @@
|
|
|
| namespace chromecast {
|
|
|
| +struct Size;
|
| +
|
| // Interface representing all the hardware-specific elements of an Ozone
|
| // implementation for Cast. Supply an implementation of this interface
|
| // to OzonePlatformCast to create a complete Ozone implementation.
|
| class CastEglPlatform {
|
| public:
|
| - struct Size {
|
| - Size(int w, int h) : width(w), height(h) {}
|
| - const int width;
|
| - const int height;
|
| - };
|
| -
|
| typedef void* (*GLGetProcAddressProc)(const char* name);
|
| typedef void* NativeDisplayType;
|
| typedef void* NativeWindowType;
|
|
|