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

Unified Diff: content/common/gpu/client/gpu_video_decode_accelerator_host.h

Issue 10662005: Use IPC::Sender and IPC::Listener in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « content/common/gpu/client/gpu_channel_host.cc ('k') | content/common/gpu/gpu_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/client/gpu_video_decode_accelerator_host.h
diff --git a/content/common/gpu/client/gpu_video_decode_accelerator_host.h b/content/common/gpu/client/gpu_video_decode_accelerator_host.h
index 5a0bd78fdd03ccef148fff33fd7cda2e119930c9..0339e0f43dfd5ef4852a50fd9372cb254813b09f 100644
--- a/content/common/gpu/client/gpu_video_decode_accelerator_host.h
+++ b/content/common/gpu/client/gpu_video_decode_accelerator_host.h
@@ -9,7 +9,7 @@
#include "base/memory/weak_ptr.h"
#include "base/threading/non_thread_safe.h"
-#include "ipc/ipc_channel.h"
+#include "ipc/ipc_listener.h"
#include "media/video/video_decode_accelerator.h"
class GpuChannelHost;
@@ -17,7 +17,7 @@ class GpuChannelHost;
// This class is used to talk to VideoDecodeAccelerator in the Gpu process
// through IPC messages.
class GpuVideoDecodeAcceleratorHost
- : public IPC::Channel::Listener,
+ : public IPC::Listener,
public media::VideoDecodeAccelerator,
public base::NonThreadSafe,
public base::SupportsWeakPtr<GpuVideoDecodeAcceleratorHost> {
@@ -27,7 +27,7 @@ class GpuVideoDecodeAcceleratorHost
int32 decoder_route_id,
media::VideoDecodeAccelerator::Client* client);
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual void OnChannelError() OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
« no previous file with comments | « content/common/gpu/client/gpu_channel_host.cc ('k') | content/common/gpu/gpu_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698