Commit 44003132 authored by Zeno Albisser's avatar Zeno Albisser
Browse files

Update OzonePlatformEglfs after update to Chromium 37.


The Ozone platform base class has received several
new pure virtual functions that needed to be implemented.
Most of the functions are implemented according to
how it is done in OzonePlatformGbm.

Change-Id: Ibab75ae0891b67d03f705da611949ed6cf75ad9f
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
Showing with 54 additions and 6 deletions
...@@ -36,26 +36,63 @@ ...@@ -36,26 +36,63 @@
#include "ozone_platform_eglfs.h" #include "ozone_platform_eglfs.h"
#include "media/ozone/media_ozone_platform.h"
#include "ui/events/ozone/device/device_manager.h"
#include "ui/ozone/ozone_platform.h" #include "ui/ozone/ozone_platform.h"
#include "ui/ozone/public/cursor_factory_ozone.h"
#include "ui/ozone/public/gpu_platform_support.h"
#include "ui/ozone/public/gpu_platform_support_host.h"
#if defined(USE_OZONE) #if defined(USE_OZONE)
namespace media {
MediaOzonePlatform* CreateMediaOzonePlatformEglfs() {
return new MediaOzonePlatform;
}
}
namespace ui { namespace ui {
OzonePlatformEglfs::OzonePlatformEglfs() {} OzonePlatformEglfs::OzonePlatformEglfs() {}
OzonePlatformEglfs::~OzonePlatformEglfs() {} OzonePlatformEglfs::~OzonePlatformEglfs() {}
gfx::SurfaceFactoryOzone* OzonePlatformEglfs::GetSurfaceFactoryOzone() { ui::SurfaceFactoryOzone* OzonePlatformEglfs::GetSurfaceFactoryOzone() {
return &surface_factory_ozone_; return surface_factory_ozone_.get();
} }
ui::EventFactoryOzone* OzonePlatformEglfs::GetEventFactoryOzone() { ui::EventFactoryOzone* OzonePlatformEglfs::GetEventFactoryOzone() {
return &event_factory_ozone_; return event_factory_ozone_.get();
}
ui::CursorFactoryOzone* OzonePlatformEglfs::GetCursorFactoryOzone() {
return cursor_factory_ozone_.get();
}
GpuPlatformSupport* OzonePlatformEglfs::GetGpuPlatformSupport() {
return gpu_platform_support_.get();
}
GpuPlatformSupportHost* OzonePlatformEglfs::GetGpuPlatformSupportHost() {
return gpu_platform_support_host_.get();
} }
OzonePlatform* CreateOzonePlatformEglfs() { return new OzonePlatformEglfs; } OzonePlatform* CreateOzonePlatformEglfs() { return new OzonePlatformEglfs; }
void OzonePlatformEglfs::InitializeUI() {
device_manager_ = CreateDeviceManager();
cursor_factory_ozone_.reset(new CursorFactoryOzone());
event_factory_ozone_.reset(new EventFactoryEvdev(NULL, device_manager_.get()));
gpu_platform_support_host_.reset(CreateStubGpuPlatformSupportHost());
}
void OzonePlatformEglfs::InitializeGPU() {
surface_factory_ozone_.reset(new SurfaceFactoryQt());
gpu_platform_support_.reset(CreateStubGpuPlatformSupport());
}
} // namespace ui } // namespace ui
#endif #endif
......
...@@ -51,12 +51,23 @@ class OzonePlatformEglfs : public OzonePlatform { ...@@ -51,12 +51,23 @@ class OzonePlatformEglfs : public OzonePlatform {
OzonePlatformEglfs(); OzonePlatformEglfs();
virtual ~OzonePlatformEglfs(); virtual ~OzonePlatformEglfs();
virtual gfx::SurfaceFactoryOzone* GetSurfaceFactoryOzone() OVERRIDE; virtual ui::SurfaceFactoryOzone* GetSurfaceFactoryOzone() OVERRIDE;
virtual ui::EventFactoryOzone* GetEventFactoryOzone() OVERRIDE; virtual ui::EventFactoryOzone* GetEventFactoryOzone() OVERRIDE;
virtual ui::CursorFactoryOzone* GetCursorFactoryOzone() OVERRIDE;
virtual GpuPlatformSupport* GetGpuPlatformSupport() OVERRIDE;
virtual GpuPlatformSupportHost* GetGpuPlatformSupportHost() OVERRIDE;
virtual void InitializeUI() OVERRIDE;
virtual void InitializeGPU() OVERRIDE;
private: private:
SurfaceFactoryQt surface_factory_ozone_; scoped_ptr<DeviceManager> device_manager_;
ui::EventFactoryEvdev event_factory_ozone_;
scoped_ptr<SurfaceFactoryQt> surface_factory_ozone_;
scoped_ptr<ui::CursorFactoryOzone> cursor_factory_ozone_;
scoped_ptr<ui::EventFactoryEvdev> event_factory_ozone_;
scoped_ptr<GpuPlatformSupport> gpu_platform_support_;
scoped_ptr<GpuPlatformSupportHost> gpu_platform_support_host_;
DISALLOW_COPY_AND_ASSIGN(OzonePlatformEglfs); DISALLOW_COPY_AND_ASSIGN(OzonePlatformEglfs);
}; };
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment