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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 1799713002: gpu_host_messages.h => content/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed an unnecessary include Created 4 years, 9 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: content/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index d08b401ce0e2f7a87981bd1e3899314103b40581..ccb83b2a16c3919a1797502f44987c1c39051172 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -54,7 +54,6 @@ class AudioRendererHost;
class BluetoothDispatcherHost;
class BrowserCdmManager;
class BrowserDemuxerAndroid;
-class GpuMessageFilter;
class InProcessChildThreadParams;
class MessagePortMessageFilter;
class MojoApplicationHost;
@@ -380,14 +379,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
// IO thread.
scoped_refptr<RenderWidgetHelper> widget_helper_;
- // The filter for GPU-related messages coming from the renderer.
- // Thread safety note: this field is to be accessed from the UI thread.
- // We don't keep a reference to it, to avoid it being destroyed on the UI
- // thread, but we clear this field when we clear channel_. When channel_ goes
- // away, it posts a task to the IO thread to destroy it there, so we know that
- // it's valid if non-NULL.
- GpuMessageFilter* gpu_message_filter_;
-
// The filter for MessagePort messages coming from the renderer.
scoped_refptr<MessagePortMessageFilter> message_port_message_filter_;

Powered by Google App Engine
This is Rietveld 408576698