blob: 11f69592b6f82405a2a02d635c7c00bf61d22a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/streams/stream_handle_impl.h"
#include "content/browser/streams/stream.h"
#include "content/public/browser/browser_thread.h"
namespace content {
StreamHandleImpl::StreamHandleImpl(const base::WeakPtr<Stream>& stream,
const GURL& original_url,
const std::string& mime_type)
: stream_(stream),
url_(stream->url()),
original_url_(original_url),
mime_type_(mime_type),
stream_message_loop_(base::MessageLoopProxy::current()) {
}
StreamHandleImpl::~StreamHandleImpl() {
stream_message_loop_->PostTask(FROM_HERE,
base::Bind(&Stream::CloseHandle, stream_));
}
const GURL& StreamHandleImpl::GetURL() {
return url_;
}
const GURL& StreamHandleImpl::GetOriginalURL() {
return original_url_;
}
const std::string& StreamHandleImpl::GetMimeType() {
return mime_type_;
}
} // namespace content
|