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

Unified Diff: gpu/ipc/service/gpu_channel.h

Issue 2286063003: gpu: Move GpuWatchdogThread into //gpu/ipc/service from content. (Closed)
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 | « gpu/ipc/service/BUILD.gn ('k') | gpu/ipc/service/gpu_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/gpu_channel.h
diff --git a/gpu/ipc/service/gpu_channel.h b/gpu/ipc/service/gpu_channel.h
index 881f9a7c3b24b3cadc16d8b7728816c78facabec..7b82557a3d6b1b1a6b66aeb901e34dd520791c65 100644
--- a/gpu/ipc/service/gpu_channel.h
+++ b/gpu/ipc/service/gpu_channel.h
@@ -49,7 +49,7 @@ class SyncPointManager;
class GpuChannelManager;
class GpuChannelMessageFilter;
class GpuChannelMessageQueue;
-class GpuWatchdog;
+class GpuWatchdogThread;
// Encapsulates an IPC channel between the GPU process and one renderer
// process. On the renderer side there's a corresponding GpuChannelHost.
@@ -60,7 +60,7 @@ class GPU_EXPORT GpuChannel
// Takes ownership of the renderer process handle.
GpuChannel(GpuChannelManager* gpu_channel_manager,
SyncPointManager* sync_point_manager,
- GpuWatchdog* watchdog,
+ GpuWatchdogThread* watchdog,
gl::GLShareGroup* share_group,
gles2::MailboxManager* mailbox_manager,
PreemptionFlag* preempting_flag,
@@ -86,7 +86,7 @@ class GPU_EXPORT GpuChannel
SyncPointManager* sync_point_manager() const { return sync_point_manager_; }
- GpuWatchdog* watchdog() const { return watchdog_; }
+ GpuWatchdogThread* watchdog() const { return watchdog_; }
const scoped_refptr<gles2::MailboxManager>& mailbox_manager() const {
return mailbox_manager_;
@@ -264,7 +264,7 @@ class GPU_EXPORT GpuChannel
scoped_refptr<gles2::MailboxManager> mailbox_manager_;
- GpuWatchdog* const watchdog_;
+ GpuWatchdogThread* const watchdog_;
// Map of stream id to appropriate message queue.
base::hash_map<int32_t, scoped_refptr<GpuChannelMessageQueue>> streams_;
« no previous file with comments | « gpu/ipc/service/BUILD.gn ('k') | gpu/ipc/service/gpu_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698