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

Unified Diff: ui/ozone/public/surface_factory_ozone.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/ozone/public/surface_factory_ozone.h ('k') | ui/ozone/public/surface_ozone_canvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/public/surface_factory_ozone.cc
diff --git a/ui/ozone/public/surface_factory_ozone.cc b/ui/ozone/public/surface_factory_ozone.cc
deleted file mode 100644
index 46cee88d6b318a81e2eeb4567c8fa4d634af623a..0000000000000000000000000000000000000000
--- a/ui/ozone/public/surface_factory_ozone.cc
+++ /dev/null
@@ -1,86 +0,0 @@
-// 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/native_pixmap.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() {
- DCHECK(!impl_) << "There should only be a single SurfaceFactoryOzone.";
- impl_ = this;
-}
-
-SurfaceFactoryOzone::~SurfaceFactoryOzone() {
- DCHECK_EQ(impl_, this);
- impl_ = NULL;
-}
-
-SurfaceFactoryOzone* SurfaceFactoryOzone::GetInstance() {
- DCHECK(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<SurfaceOzoneEGL>
-SurfaceFactoryOzone::CreateSurfacelessEGLSurfaceForWidget(
- 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;
-}
-
-scoped_refptr<ui::NativePixmap> SurfaceFactoryOzone::CreateNativePixmap(
- gfx::Size size,
- BufferFormat format) {
- return NULL;
-}
-
-bool SurfaceFactoryOzone::ScheduleOverlayPlane(
- gfx::AcceleratedWidget widget,
- int plane_z_order,
- gfx::OverlayTransform plane_transform,
- scoped_refptr<NativePixmap> buffer,
- const gfx::Rect& display_bounds,
- const gfx::RectF& crop_rect) {
- return false;
-}
-
-bool SurfaceFactoryOzone::CanShowPrimaryPlaneAsOverlay() {
- return false;
-}
-} // namespace ui
« no previous file with comments | « ui/ozone/public/surface_factory_ozone.h ('k') | ui/ozone/public/surface_ozone_canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698