diff options
author | skyostil <skyostil@chromium.org> | 2015-06-05 08:26:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-05 15:26:51 +0000 |
commit | 74f13dc2b62abb34e947093fe2600f9c539e60ef (patch) | |
tree | c298260fa8c56717943ff45efda601f312cc74c4 /content/browser/streams/stream_handle_impl.h | |
parent | a95af720637c609f33ed76d89d658041f354a222 (diff) | |
download | chromium_src-74f13dc2b62abb34e947093fe2600f9c539e60ef.zip chromium_src-74f13dc2b62abb34e947093fe2600f9c539e60ef.tar.gz chromium_src-74f13dc2b62abb34e947093fe2600f9c539e60ef.tar.bz2 |
Revert "content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs"
This reverts commit 5d18b2493af36d77d3c491854e3d56f46f5f747c.
Reason: Broke iOS build: http://build.chromium.org/p/chromium.mac/builders/iOS_Simulator_%28dbg%29/builds/27843
NOTRY=true
NOTREECHECKS=true
BUG=465354
TBR=sievers@chromium.org,nick@chromium.org
Review URL: https://codereview.chromium.org/1153503009
Cr-Commit-Position: refs/heads/master@{#333047}
Diffstat (limited to 'content/browser/streams/stream_handle_impl.h')
-rw-r--r-- | content/browser/streams/stream_handle_impl.h | 4 |
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 15e8e20..d2bd94d 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 SingleThreadTaskRunner; +class MessageLoopProxy; } namespace content { @@ -30,7 +30,7 @@ class StreamHandleImpl : public StreamHandle { base::WeakPtr<Stream> stream_; GURL url_; - base::SingleThreadTaskRunner* stream_task_runner_; + base::MessageLoopProxy* stream_message_loop_; std::vector<base::Closure> close_listeners_; }; |