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

Unified Diff: services/ui/ws/gpu_service_proxy.h

Issue 2539893002: Mus: Implement GpuMain mojo interface (Closed)
Patch Set: more cleanup Created 4 years 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: services/ui/ws/gpu_service_proxy.h
diff --git a/services/ui/ws/gpu_service_proxy.h b/services/ui/ws/gpu_service_proxy.h
index c85b66f5f9cabdd228f351f5b02765b7a8441778..5687b2e383967025e35a2d4f35780a40ce4ede1e 100644
--- a/services/ui/ws/gpu_service_proxy.h
+++ b/services/ui/ws/gpu_service_proxy.h
@@ -64,7 +64,12 @@ class GpuServiceProxy : public mojom::GpuService {
mojo::BindingSet<mojom::GpuService> bindings_;
gpu::GPUInfo gpu_info_;
std::unique_ptr<MusGpuMemoryBufferManager> gpu_memory_buffer_manager_;
- GpuMain gpu_main_;
+
+ mojom::GpuMainPtr gpu_main_;
+
+ // TODO(fsamuel): GpuServiceProxy should not be holding onto |gpu_main_impl|
+ // because that will live in another process soon.
+ std::unique_ptr<GpuMain> gpu_main_impl_;
DISALLOW_COPY_AND_ASSIGN(GpuServiceProxy);
};

Powered by Google App Engine
This is Rietveld 408576698