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

Unified Diff: components/viz/frame_sinks/mojo_frame_sink_manager.h

Issue 2795823003: Create //components/viz/frame_sinks and move code. (Closed)
Patch Set: Fix DEPS. Created 3 years, 8 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
Index: components/viz/frame_sinks/mojo_frame_sink_manager.h
diff --git a/services/ui/surfaces/mojo_frame_sink_manager.h b/components/viz/frame_sinks/mojo_frame_sink_manager.h
similarity index 88%
rename from services/ui/surfaces/mojo_frame_sink_manager.h
rename to components/viz/frame_sinks/mojo_frame_sink_manager.h
index cf83182894d452c320269f0029f726b9c517b55a..fc33393ce50a46483b728ffe6c08c360fb14f016 100644
--- a/services/ui/surfaces/mojo_frame_sink_manager.h
+++ b/components/viz/frame_sinks/mojo_frame_sink_manager.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SERVICES_UI_SURFACES_MOJO_FRAME_SINK_MANAGER_H_
-#define SERVICES_UI_SURFACES_MOJO_FRAME_SINK_MANAGER_H_
+#ifndef COMPONENTS_VIZ_FRAME_SINKS_MOJO_FRAME_SINK_MANAGER_H_
+#define COMPONENTS_VIZ_FRAME_SINKS_MOJO_FRAME_SINK_MANAGER_H_
#include <stdint.h>
@@ -16,11 +16,11 @@
#include "cc/surfaces/frame_sink_id.h"
#include "cc/surfaces/surface_manager.h"
#include "cc/surfaces/surface_observer.h"
-#include "components/display_compositor/gpu_compositor_frame_sink_delegate.h"
+#include "components/viz/frame_sinks/gpu_compositor_frame_sink_delegate.h"
#include "gpu/ipc/common/surface_handle.h"
#include "mojo/public/cpp/bindings/binding.h"
-namespace ui {
+namespace viz {
class DisplayProvider;
@@ -32,10 +32,9 @@ class DisplayProvider;
// will be true after the mus process split. For non-mus Chrome this will be
// created in the browser process, at least until GPU implementations can be
// unified.
-class MojoFrameSinkManager
- : public cc::SurfaceObserver,
- public display_compositor::GpuCompositorFrameSinkDelegate,
- public cc::mojom::FrameSinkManager {
+class MojoFrameSinkManager : public cc::SurfaceObserver,
+ public GpuCompositorFrameSinkDelegate,
+ public cc::mojom::FrameSinkManager {
public:
MojoFrameSinkManager(DisplayProvider* display_provider,
cc::mojom::FrameSinkManagerRequest request,
@@ -79,7 +78,7 @@ class MojoFrameSinkManager
void OnSurfaceDamaged(const cc::SurfaceId& surface_id,
bool* changed) override;
- // display_compositor::GpuCompositorFrameSinkDelegate implementation.
+ // GpuCompositorFrameSinkDelegate implementation.
void OnClientConnectionLost(const cc::FrameSinkId& frame_sink_id,
bool destroy_compositor_frame_sink) override;
void OnPrivateConnectionLost(const cc::FrameSinkId& frame_sink_id,
@@ -106,6 +105,6 @@ class MojoFrameSinkManager
DISALLOW_COPY_AND_ASSIGN(MojoFrameSinkManager);
};
-} // namespace ui
+} // namespace viz
-#endif // SERVICES_UI_SURFACES_MOJO_FRAME_SINK_MANAGER_H_
+#endif // COMPONENTS_VIZ_FRAME_SINKS_MOJO_FRAME_SINK_MANAGER_H_
« no previous file with comments | « components/viz/frame_sinks/gpu_root_compositor_frame_sink.cc ('k') | components/viz/frame_sinks/mojo_frame_sink_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698