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

Unified Diff: chrome/browser/gpu_process_host.h

Issue 5701004: Rename ResourceMessageFilter to RenderMessageFilter, since that's what it act... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/browser/geolocation/geolocation_dispatcher_host_old.cc ('k') | chrome/browser/gpu_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gpu_process_host.h
===================================================================
--- chrome/browser/gpu_process_host.h (revision 69057)
+++ chrome/browser/gpu_process_host.h (working copy)
@@ -18,7 +18,7 @@
struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params;
class GpuBlacklist;
class GPUInfo;
-class ResourceMessageFilter;
+class RenderMessageFilter;
namespace gfx {
class Size;
@@ -42,28 +42,25 @@
// Tells the GPU process to create a new channel for communication with a
// renderer. Will asynchronously send message to object with given routing id
// on completion.
- void EstablishGpuChannel(int renderer_id,
- ResourceMessageFilter* filter);
+ void EstablishGpuChannel(int renderer_id, RenderMessageFilter* filter);
// Sends a reply message later when the next GpuHostMsg_SynchronizeReply comes
// in.
- void Synchronize(IPC::Message* reply,
- ResourceMessageFilter* filter);
+ void Synchronize(IPC::Message* reply, RenderMessageFilter* filter);
private:
// Used to queue pending channel requests.
struct ChannelRequest {
- explicit ChannelRequest(ResourceMessageFilter* filter);
+ explicit ChannelRequest(RenderMessageFilter* filter);
~ChannelRequest();
// Used to send the reply message back to the renderer.
- scoped_refptr<ResourceMessageFilter> filter;
+ scoped_refptr<RenderMessageFilter> filter;
};
// Used to queue pending synchronization requests.
struct SynchronizationRequest {
- SynchronizationRequest(IPC::Message* reply,
- ResourceMessageFilter* filter);
+ SynchronizationRequest(IPC::Message* reply, RenderMessageFilter* filter);
~SynchronizationRequest();
// The delayed reply message which needs to be sent to the
@@ -71,7 +68,7 @@
IPC::Message* reply;
// Used to send the reply message back to the renderer.
- scoped_refptr<ResourceMessageFilter> filter;
+ scoped_refptr<RenderMessageFilter> filter;
};
GpuProcessHost();
@@ -104,10 +101,10 @@
// Sends the response for establish channel request to the renderer.
void SendEstablishChannelReply(const IPC::ChannelHandle& channel,
const GPUInfo& gpu_info,
- ResourceMessageFilter* filter);
+ RenderMessageFilter* filter);
// Sends the response for synchronization request to the renderer.
void SendSynchronizationReply(IPC::Message* reply,
- ResourceMessageFilter* filter);
+ RenderMessageFilter* filter);
// ResourceDispatcherHost::Receiver implementation:
virtual URLRequestContext* GetRequestContext(
« no previous file with comments | « chrome/browser/geolocation/geolocation_dispatcher_host_old.cc ('k') | chrome/browser/gpu_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698