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

Side by Side Diff: ui/ozone/platform/drm/host/gpu_thread_observer.h

Issue 1603213002: Renamed ChannelObserver to better describe its purpose (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nit Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « ui/ozone/platform/drm/host/drm_window_host_manager.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_OZONE_PLATFORM_DRM_HOST_GPU_THREAD_OBSERVER_H_
6 #define UI_OZONE_PLATFORM_DRM_HOST_GPU_THREAD_OBSERVER_H_
7
8 namespace ui {
9
10 // Observes the channel state.
11 class GpuThreadObserver {
12 public:
13 virtual ~GpuThreadObserver() {}
14
15 // Called when a GPU thread implementation has become available.
16 virtual void OnGpuThreadReady() = 0;
17 // Called when the GPU thread implementation has ceased to be
18 // available.
19 virtual void OnGpuThreadRetired() = 0;
20 };
21
22 } // namespace ui
23
24 #endif // UI_OZONE_PLATFORM_DRM_HOST_GPU_THREAD_OBSERVER_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/host/drm_window_host_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698