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

Unified Diff: content/browser/shared_worker/shared_worker_service_impl_unittest.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/shared_worker/shared_worker_service_impl_unittest.cc
diff --git a/content/browser/shared_worker/shared_worker_service_impl_unittest.cc b/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
index e08da83efb242bc60a0eb67b98029dfb24fe4a99..e69a890087faff3a868d9cca04969909bd8e2a19 100644
--- a/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
+++ b/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
@@ -121,7 +121,7 @@ class MockMessagePortMessageFilter : public MessagePortMessageFilter {
void Close() {
message_queue_ = NULL;
- OnChannelClosing();
+ OnSenderClosing();
}
private:
@@ -153,7 +153,7 @@ class MockSharedWorkerMessageFilter : public SharedWorkerMessageFilter {
void Close() {
message_queue_ = NULL;
- OnChannelClosing();
+ OnSenderClosing();
}
private:

Powered by Google App Engine
This is Rietveld 408576698