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

Unified Diff: chromecast/ozone/ozone_platform_cast.h

Issue 1025453002: Implement common Ozone interface for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address lcwu comments 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
« no previous file with comments | « chromecast/ozone/gpu_platform_support_cast.cc ('k') | chromecast/ozone/ozone_platform_cast.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/ozone/ozone_platform_cast.h
diff --git a/chromecast/ozone/ozone_platform_cast.h b/chromecast/ozone/ozone_platform_cast.h
new file mode 100644
index 0000000000000000000000000000000000000000..eb936d102e44f845fb1bd89e1c307c517eea3103
--- /dev/null
+++ b/chromecast/ozone/ozone_platform_cast.h
@@ -0,0 +1,58 @@
+// 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_OZONE_PLATFORM_CAST_H_
+#define CHROMECAST_OZONE_OZONE_PLATFORM_CAST_H_
+
+#include "chromecast/ozone/gpu_platform_support_cast.h"
+#include "chromecast/ozone/surface_factory_cast.h"
+#include "ui/ozone/public/ozone_platform.h"
+
+namespace chromecast {
+namespace ozone {
+
+class CastEglPlatform;
+
+// Ozone platform implementation for Cast. Implements functionality
+// common to all Cast implementations:
+// - Always one window with window size equal to display size
+// - No input, cursor support
+// - Relinquish GPU resources flow for switching to external applications
+// Meanwhile, platform-specific implementation details are abstracted out
+// to the CastEglPlatform interface.
+class OzonePlatformCast : public ui::OzonePlatform {
+ public:
+ explicit OzonePlatformCast(scoped_ptr<CastEglPlatform> egl_platform);
+ ~OzonePlatformCast() override;
+
+ // OzonePlatform implementation:
+ ui::SurfaceFactoryOzone* GetSurfaceFactoryOzone() override;
+ ui::CursorFactoryOzone* GetCursorFactoryOzone() override;
+ ui::InputController* GetInputController() override;
+ ui::GpuPlatformSupport* GetGpuPlatformSupport() override;
+ ui::GpuPlatformSupportHost* GetGpuPlatformSupportHost() override;
+ scoped_ptr<ui::SystemInputInjector> CreateSystemInputInjector() override;
+ scoped_ptr<ui::PlatformWindow> CreatePlatformWindow(
+ ui::PlatformWindowDelegate* delegate,
+ const gfx::Rect& bounds) override;
+ scoped_ptr<ui::NativeDisplayDelegate> CreateNativeDisplayDelegate() override;
+
+ void InitializeUI() override;
+ void InitializeGPU() override;
+
+ private:
+ scoped_ptr<CastEglPlatform> egl_platform_;
+ scoped_ptr<SurfaceFactoryCast> surface_factory_ozone_;
+ scoped_ptr<ui::CursorFactoryOzone> cursor_factory_ozone_;
+ scoped_ptr<ui::InputController> input_controller_;
+ scoped_ptr<GpuPlatformSupportCast> gpu_platform_support_;
+ scoped_ptr<ui::GpuPlatformSupportHost> gpu_platform_support_host_;
+
+ DISALLOW_COPY_AND_ASSIGN(OzonePlatformCast);
+};
+
+} // namespace ozone
+} // namespace chromecast
+
+#endif // CHROMECAST_OZONE_OZONE_PLATFORM_CAST_H_
« no previous file with comments | « chromecast/ozone/gpu_platform_support_cast.cc ('k') | chromecast/ozone/ozone_platform_cast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698