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

Unified Diff: cc/surfaces/onscreen_display_client.h

Issue 2036563002: Delete OnscreenDisplayClient and TopLevelDisplayClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: onscreendisplayclient: webview-scoped-allow-gl-for-hardwarerenderer-constructor Created 4 years, 6 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 | « cc/surfaces/display_unittest.cc ('k') | cc/surfaces/onscreen_display_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/onscreen_display_client.h
diff --git a/cc/surfaces/onscreen_display_client.h b/cc/surfaces/onscreen_display_client.h
deleted file mode 100644
index 91bb5c09987d4dc4cc1e937b9bb3ffb8253e4999..0000000000000000000000000000000000000000
--- a/cc/surfaces/onscreen_display_client.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright 2014 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 CC_SURFACES_ONSCREEN_DISPLAY_CLIENT_H_
-#define CC_SURFACES_ONSCREEN_DISPLAY_CLIENT_H_
-
-#include <memory>
-
-#include "base/compiler_specific.h"
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "cc/surfaces/display.h"
-#include "cc/surfaces/display_client.h"
-#include "cc/surfaces/surfaces_export.h"
-
-namespace base {
-class SingleThreadTaskRunner;
-}
-
-namespace cc {
-class ContextProvider;
-class DisplayScheduler;
-class SurfaceManager;
-class SurfaceDisplayOutputSurface;
-
-// This class provides a DisplayClient implementation for drawing directly to an
-// onscreen context.
-class CC_SURFACES_EXPORT OnscreenDisplayClient
- : NON_EXPORTED_BASE(DisplayClient) {
- public:
- OnscreenDisplayClient(std::unique_ptr<OutputSurface> output_surface,
- SurfaceManager* manager,
- SharedBitmapManager* bitmap_manager,
- gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
- const RendererSettings& settings,
- scoped_refptr<base::SingleThreadTaskRunner> task_runner,
- uint32_t compositor_surface_namespace);
- ~OnscreenDisplayClient() override;
-
- bool Initialize();
- Display* display() { return display_.get(); }
- void set_surface_output_surface(SurfaceDisplayOutputSurface* surface) {
- surface_display_output_surface_ = surface;
- }
-
- // DisplayClient implementation.
- void OutputSurfaceLost() override;
- void SetMemoryPolicy(const ManagedMemoryPolicy& policy) override;
-
- bool output_surface_lost() { return output_surface_lost_; }
-
- protected:
- std::unique_ptr<OutputSurface> output_surface_;
- // Be careful of destruction order:
- // Display depends on DisplayScheduler depends on *BeginFrameSource
- // depends on TaskRunner.
- scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
- std::unique_ptr<Display> display_;
- SurfaceDisplayOutputSurface* surface_display_output_surface_;
- bool output_surface_lost_;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(OnscreenDisplayClient);
-};
-
-} // namespace cc
-
-#endif // CC_SURFACES_ONSCREEN_DISPLAY_CLIENT_H_
« no previous file with comments | « cc/surfaces/display_unittest.cc ('k') | cc/surfaces/onscreen_display_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698