Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1134)

Unified Diff: chromecast/public/cast_egl_platform.h

Issue 1104853002: Adds public API and loads Cast OSD plane implementation from shared lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix some nits Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/graphics/osd_plane_default.cc ('k') | chromecast/public/graphics_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chromecast/graphics/osd_plane_default.cc ('k') | chromecast/public/graphics_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698