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

Unified Diff: content/browser/device_orientation/message_filter.cc

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/browser/appcache/appcache_frontend_proxy.cc ('k') | content/browser/gpu/gpu_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/device_orientation/message_filter.cc
diff --git a/content/browser/device_orientation/message_filter.cc b/content/browser/device_orientation/message_filter.cc
index e1bbf3cd3258239608ffc5a554d9df024c558c7a..9897aa701fcce04e23cb33dac84fce28244a3654 100644
--- a/content/browser/device_orientation/message_filter.cc
+++ b/content/browser/device_orientation/message_filter.cc
@@ -29,7 +29,7 @@ class MessageFilter::ObserverDelegate
// Will stop observing provider when destructed.
ObserverDelegate(Provider* provider,
int render_view_id,
- IPC::Message::Sender* sender);
+ IPC::Sender* sender);
// From Provider::Observer.
virtual void OnOrientationUpdate(const Orientation& orientation);
@@ -40,14 +40,14 @@ class MessageFilter::ObserverDelegate
scoped_refptr<Provider> provider_;
int render_view_id_;
- IPC::Message::Sender* sender_; // Weak pointer.
+ IPC::Sender* sender_; // Weak pointer.
DISALLOW_COPY_AND_ASSIGN(ObserverDelegate);
};
MessageFilter::ObserverDelegate::ObserverDelegate(Provider* provider,
int render_view_id,
- IPC::Message::Sender* sender)
+ IPC::Sender* sender)
: provider_(provider),
render_view_id_(render_view_id),
sender_(sender) {
« no previous file with comments | « content/browser/appcache/appcache_frontend_proxy.cc ('k') | content/browser/gpu/gpu_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698