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

Unified Diff: services/ui/gles2/gl_surface_adapter.cc

Issue 2176303002: services/ui: Remove deprecated gpu code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot-merge Created 4 years, 5 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 | « services/ui/gles2/gl_surface_adapter.h ('k') | services/ui/gles2/gpu_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/gles2/gl_surface_adapter.cc
diff --git a/services/ui/gles2/gl_surface_adapter.cc b/services/ui/gles2/gl_surface_adapter.cc
deleted file mode 100644
index 9317ac95b5558b1c52ffcdcd1fc263ea94b04edd..0000000000000000000000000000000000000000
--- a/services/ui/gles2/gl_surface_adapter.cc
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2016 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 "services/ui/gles2/gl_surface_adapter.h"
-
-#include "base/bind.h"
-
-namespace ui {
-
-GLSurfaceAdapterMus::GLSurfaceAdapterMus(scoped_refptr<gl::GLSurface> surface)
- : gl::GLSurfaceAdapter(surface.get()),
- surface_(surface),
- weak_ptr_factory_(this) {}
-
-GLSurfaceAdapterMus::~GLSurfaceAdapterMus() {}
-
-void GLSurfaceAdapterMus::SwapBuffersAsync(
- const GLSurface::SwapCompletionCallback& callback) {
- gl::GLSurfaceAdapter::SwapBuffersAsync(
- base::Bind(&GLSurfaceAdapterMus::WrappedCallbackForSwapBuffersAsync,
- weak_ptr_factory_.GetWeakPtr(), callback));
-}
-
-void GLSurfaceAdapterMus::PostSubBufferAsync(
- int x,
- int y,
- int width,
- int height,
- const GLSurface::SwapCompletionCallback& callback) {
- gl::GLSurfaceAdapter::PostSubBufferAsync(
- x, y, width, height,
- base::Bind(&GLSurfaceAdapterMus::WrappedCallbackForSwapBuffersAsync,
- weak_ptr_factory_.GetWeakPtr(), callback));
-}
-
-void GLSurfaceAdapterMus::CommitOverlayPlanesAsync(
- const GLSurface::SwapCompletionCallback& callback) {
- gl::GLSurfaceAdapter::CommitOverlayPlanesAsync(
- base::Bind(&GLSurfaceAdapterMus::WrappedCallbackForSwapBuffersAsync,
- weak_ptr_factory_.GetWeakPtr(), callback));
-}
-
-void GLSurfaceAdapterMus::WrappedCallbackForSwapBuffersAsync(
- const gl::GLSurface::SwapCompletionCallback& original_callback,
- gfx::SwapResult result) {
- if (!adapter_callback_.is_null())
- adapter_callback_.Run(result);
- original_callback.Run(result);
-}
-
-void GLSurfaceAdapterMus::SetGpuCompletedSwapBuffersCallback(
- gl::GLSurface::SwapCompletionCallback callback) {
- adapter_callback_ = std::move(callback);
-}
-
-} // namespace ui
« no previous file with comments | « services/ui/gles2/gl_surface_adapter.h ('k') | services/ui/gles2/gpu_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698