Index: chromecast/ozone/surface_ozone_egl_cast.h |
diff --git a/chromecast/ozone/surface_ozone_egl_cast.h b/chromecast/ozone/surface_ozone_egl_cast.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f051330c451ae32c121fda3b888facec73d51736 |
--- /dev/null |
+++ b/chromecast/ozone/surface_ozone_egl_cast.h |
@@ -0,0 +1,37 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROMECAST_OZONE_SURFACE_OZONE_EGL_CAST_H_ |
+#define CHROMECAST_OZONE_SURFACE_OZONE_EGL_CAST_H_ |
+ |
+#include "ui/ozone/public/surface_ozone_egl.h" |
+ |
+namespace chromecast { |
+namespace ozone { |
+ |
+class SurfaceFactoryCast; |
+ |
+// EGL surface wrapper for OzonePlatformCast. |
+class SurfaceOzoneEglCast : public ui::SurfaceOzoneEGL { |
+ public: |
+ explicit SurfaceOzoneEglCast(SurfaceFactoryCast* parent) : parent_(parent) {} |
+ ~SurfaceOzoneEglCast() override; |
+ |
+ // SurfaceOzoneEGL implementation: |
+ intptr_t GetNativeWindow() override; |
+ bool OnSwapBuffers() override; |
+ bool OnSwapBuffersAsync(const SwapCompletionCallback& callback) override; |
+ bool ResizeNativeWindow(const gfx::Size& viewport_size) override; |
+ scoped_ptr<gfx::VSyncProvider> CreateVSyncProvider() override; |
+ |
+ private: |
+ SurfaceFactoryCast* parent_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(SurfaceOzoneEglCast); |
+}; |
+ |
+} // namespace ozone |
+} // namespace chromecast |
+ |
+#endif // CHROMECAST_OZONE_SURFACE_OZONE_EGL_CAST_H_ |