summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_proxy.h
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2015-07-21 01:59:10 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-21 08:59:42 +0000
commit3b159ee0cbc0e28a535f47a8af3a33795c915376 (patch)
tree995a9d19fcaf2b5df9beb5223d90e2a687bd749f /ipc/ipc_channel_proxy.h
parent33f8219a1c8f71c7781b0b9641b259482245b9c3 (diff)
downloadchromium_src-3b159ee0cbc0e28a535f47a8af3a33795c915376.zip
chromium_src-3b159ee0cbc0e28a535f47a8af3a33795c915376.tar.gz
chromium_src-3b159ee0cbc0e28a535f47a8af3a33795c915376.tar.bz2
ipc: Remove the ability to override the listener task runner
Since base::ThreadTaskRunnerHandle::Get() is now configured to return the correct value from the start, there's no need to override the IPC listener task runner any longer. BUG=465354 Review URL: https://codereview.chromium.org/1239273002 Cr-Commit-Position: refs/heads/master@{#339629}
Diffstat (limited to 'ipc/ipc_channel_proxy.h')
-rw-r--r--ipc/ipc_channel_proxy.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h
index 73cb7e0..5d1402e 100644
--- a/ipc/ipc_channel_proxy.h
+++ b/ipc/ipc_channel_proxy.h
@@ -144,12 +144,6 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
}
#endif
- // Set the task runner on which dispatched messages are posted. Both the new
- // task runner and the existing task runner must run on the same thread, and
- // must belong to the calling thread.
- void SetListenerTaskRunner(
- scoped_refptr<base::SingleThreadTaskRunner> listener_task_runner);
-
// Called to clear the pointer to the IPC task runner when it's going away.
void ClearIPCTaskRunner();
@@ -180,8 +174,6 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
Context(Listener* listener,
const scoped_refptr<base::SingleThreadTaskRunner>& ipc_thread);
void ClearIPCTaskRunner();
- void SetListenerTaskRunner(
- scoped_refptr<base::SingleThreadTaskRunner> listener_task_runner);
base::SingleThreadTaskRunner* ipc_task_runner() const {
return ipc_task_runner_.get();
}