summaryrefslogtreecommitdiffstats
path: root/content/browser/streams/stream_handle_impl.h
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2015-06-05 10:23:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-05 17:24:40 +0000
commit422456f9d53f0bf936a64f21a1463fd0abd3df84 (patch)
treeafa337c4e76bfb38d0bcf606d5272a7a4b6f5ba0 /content/browser/streams/stream_handle_impl.h
parent9c8e5d7259661cda32b698ee88254491e6984900 (diff)
downloadchromium_src-422456f9d53f0bf936a64f21a1463fd0abd3df84.zip
chromium_src-422456f9d53f0bf936a64f21a1463fd0abd3df84.tar.gz
chromium_src-422456f9d53f0bf936a64f21a1463fd0abd3df84.tar.bz2
content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs
This patch was mostly autogenerated with https://codereview.chromium.org/1010073002/. BUG=465354 TBR=nick@chromium.org Review URL: https://codereview.chromium.org/1159623009 Cr-Commit-Position: refs/heads/master@{#333081}
Diffstat (limited to 'content/browser/streams/stream_handle_impl.h')
-rw-r--r--content/browser/streams/stream_handle_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/streams/stream_handle_impl.h b/content/browser/streams/stream_handle_impl.h
index d2bd94d..15e8e20 100644
--- a/content/browser/streams/stream_handle_impl.h
+++ b/content/browser/streams/stream_handle_impl.h
@@ -11,7 +11,7 @@
#include "content/public/browser/stream_handle.h"
namespace base {
-class MessageLoopProxy;
+class SingleThreadTaskRunner;
}
namespace content {
@@ -30,7 +30,7 @@ class StreamHandleImpl : public StreamHandle {
base::WeakPtr<Stream> stream_;
GURL url_;
- base::MessageLoopProxy* stream_message_loop_;
+ base::SingleThreadTaskRunner* stream_task_runner_;
std::vector<base::Closure> close_listeners_;
};