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

Unified Diff: content/browser/fileapi/fileapi_message_filter.cc

Issue 324143002: Decouple IPC::MessageFilter from IPC::Channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing compilation errors Created 6 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
Index: content/browser/fileapi/fileapi_message_filter.cc
diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
index 2eb601a7c6deaf2eda2cfc3ce7cb1d17c249b84c..836454f685b74d1f13fe68fd1dfa98ebebdc0a77 100644
--- a/content/browser/fileapi/fileapi_message_filter.cc
+++ b/content/browser/fileapi/fileapi_message_filter.cc
@@ -104,7 +104,7 @@ FileAPIMessageFilter::FileAPIMessageFilter(
DCHECK(stream_context);
}
-void FileAPIMessageFilter::OnChannelConnected(int32 peer_pid) {
+void FileAPIMessageFilter::OnSenderConnected() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
if (request_context_getter_.get()) {
@@ -120,7 +120,7 @@ void FileAPIMessageFilter::OnChannelConnected(int32 peer_pid) {
operation_runner_ = context_->CreateFileSystemOperationRunner();
}
-void FileAPIMessageFilter::OnChannelClosing() {
+void FileAPIMessageFilter::OnSenderClosing() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// Unregister all the blob and stream URLs that are previously registered in

Powered by Google App Engine
This is Rietveld 408576698