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

Unified Diff: chromecast/ozone/surface_ozone_egl_chromecast.h

Issue 1025453002: Implement common Ozone interface for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
Index: chromecast/ozone/surface_ozone_egl_chromecast.h
diff --git a/chromecast/ozone/surface_ozone_egl_chromecast.h b/chromecast/ozone/surface_ozone_egl_chromecast.h
new file mode 100644
index 0000000000000000000000000000000000000000..087b1f5b265dc17c1e4af50dd8078b69349a7216
--- /dev/null
+++ b/chromecast/ozone/surface_ozone_egl_chromecast.h
@@ -0,0 +1,38 @@
+// 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_CHROMECAST_H_
+#define CHROMECAST_OZONE_SURFACE_OZONE_EGL_CHROMECAST_H_
+
+#include "ui/ozone/public/surface_ozone_egl.h"
+
+namespace chromecast {
+namespace ozone {
+
+class SurfaceFactoryChromecast;
+
+// EGL surface wrapper for OzonePlatformChromecast.
+class SurfaceOzoneEglChromecast : public ui::SurfaceOzoneEGL {
+ public:
+ explicit SurfaceOzoneEglChromecast(SurfaceFactoryChromecast* parent)
+ : parent_(parent) {}
+ ~SurfaceOzoneEglChromecast() 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:
+ SurfaceFactoryChromecast* parent_;
+
+ DISALLOW_COPY_AND_ASSIGN(SurfaceOzoneEglChromecast);
+};
+
+} // namespace ozone
+} // namespace chromecast
+
+#endif // CHROMECAST_OZONE_SURFACE_OZONE_EGL_CHROMECAST_H_

Powered by Google App Engine
This is Rietveld 408576698