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

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

Issue 2281583003: services/ui: Split GpuServiceInternal into gpu vs. ws pieces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DONE_2016.08.24_mus-ws-gpu-refactor
Patch Set: tot merge Created 4 years, 4 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/ws/gpu_service_proxy.cc ('k') | services/ui/ws/mus_gpu_memory_buffer_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/gpu_service_proxy_delegate.h
diff --git a/services/ui/ws/gpu_service_proxy_delegate.h b/services/ui/ws/gpu_service_proxy_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..5cf32d5742571b721527ab678b186aabbf8fa9ed
--- /dev/null
+++ b/services/ui/ws/gpu_service_proxy_delegate.h
@@ -0,0 +1,28 @@
+// Copyright 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.
+
+#ifndef SERVICES_UI_WS_GPU_SERVICE_PROXY_DELEGATEH_
+#define SERVICES_UI_WS_GPU_SERVICE_PROXY_DELEGATEH_
+
+#include "base/memory/ref_counted.h"
+
+namespace gpu {
+class GpuChannelHost;
+}
+
+namespace ui {
+namespace ws {
+
+class GpuServiceProxyDelegate {
+ public:
+ virtual ~GpuServiceProxyDelegate() {}
+
+ virtual void OnGpuChannelEstablished(
+ scoped_refptr<gpu::GpuChannelHost> gpu_channel) = 0;
+};
+
+} // namespace ws
+} // namespace ui
+
+#endif // SERVICES_UI_WS_GPU_SERVICE_PROXY_DELEGATEH_
« no previous file with comments | « services/ui/ws/gpu_service_proxy.cc ('k') | services/ui/ws/mus_gpu_memory_buffer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698