summaryrefslogtreecommitdiffstats
path: root/chromium/ui/ozone/public/surface_factory_ozone.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/ozone/public/surface_factory_ozone.cc')
-rw-r--r--chromium/ui/ozone/public/surface_factory_ozone.cc75
1 files changed, 75 insertions, 0 deletions
diff --git a/chromium/ui/ozone/public/surface_factory_ozone.cc b/chromium/ui/ozone/public/surface_factory_ozone.cc
new file mode 100644
index 00000000000..9d33be43524
--- /dev/null
+++ b/chromium/ui/ozone/public/surface_factory_ozone.cc
@@ -0,0 +1,75 @@
+// Copyright (c) 2013 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.
+
+#include "ui/ozone/public/surface_factory_ozone.h"
+
+#include <stdlib.h>
+
+#include "base/command_line.h"
+#include "ui/ozone/public/surface_ozone_canvas.h"
+#include "ui/ozone/public/surface_ozone_egl.h"
+
+namespace ui {
+
+// static
+SurfaceFactoryOzone* SurfaceFactoryOzone::impl_ = NULL;
+
+SurfaceFactoryOzone::SurfaceFactoryOzone() {
+ CHECK(!impl_) << "There should only be a single SurfaceFactoryOzone.";
+ impl_ = this;
+}
+
+SurfaceFactoryOzone::~SurfaceFactoryOzone() {
+ CHECK_EQ(impl_, this);
+ impl_ = NULL;
+}
+
+SurfaceFactoryOzone* SurfaceFactoryOzone::GetInstance() {
+ CHECK(impl_) << "No SurfaceFactoryOzone implementation set.";
+ return impl_;
+}
+
+intptr_t SurfaceFactoryOzone::GetNativeDisplay() {
+ return 0;
+}
+
+scoped_ptr<SurfaceOzoneEGL> SurfaceFactoryOzone::CreateEGLSurfaceForWidget(
+ gfx::AcceleratedWidget widget) {
+ NOTIMPLEMENTED();
+ return scoped_ptr<SurfaceOzoneEGL>();
+}
+
+scoped_ptr<SurfaceOzoneCanvas> SurfaceFactoryOzone::CreateCanvasForWidget(
+ gfx::AcceleratedWidget widget) {
+ NOTIMPLEMENTED();
+ return scoped_ptr<SurfaceOzoneCanvas>();
+}
+
+const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties(
+ const int32* desired_attributes) {
+ return desired_attributes;
+}
+
+ui::OverlayCandidatesOzone* SurfaceFactoryOzone::GetOverlayCandidates(
+ gfx::AcceleratedWidget w) {
+ return NULL;
+}
+
+void SurfaceFactoryOzone::ScheduleOverlayPlane(
+ gfx::AcceleratedWidget w,
+ int plane_z_order,
+ gfx::OverlayTransform plane_transform,
+ ui::NativeBufferOzone buffer,
+ const gfx::Rect& display_bounds,
+ gfx::RectF crop_rect) {
+ NOTREACHED();
+}
+
+ui::NativeBufferOzone SurfaceFactoryOzone::CreateNativeBuffer(
+ gfx::Size size,
+ BufferFormat format) {
+ return 0;
+}
+
+} // namespace ui