cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / renderer / fetchers / manifest_fetcher.cc
blobc6a64c84f87d10094c4a4836352d504cccd445ca
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/renderer/fetchers/manifest_fetcher.h"
7 #include "base/bind.h"
8 #include "base/logging.h"
9 #include "content/public/renderer/resource_fetcher.h"
10 #include "third_party/WebKit/public/platform/WebURLRequest.h"
11 #include "third_party/WebKit/public/web/WebFrame.h"
13 namespace content {
15 ManifestFetcher::ManifestFetcher(const GURL& url)
16 : completed_(false) {
17 fetcher_.reset(ResourceFetcher::Create(url));
20 ManifestFetcher::~ManifestFetcher() {
21 if (!completed_)
22 Cancel();
25 void ManifestFetcher::Start(blink::WebFrame* frame, const Callback& callback) {
26 callback_ = callback;
27 fetcher_->Start(frame,
28 blink::WebURLRequest::RequestContextManifest,
29 blink::WebURLRequest::FrameTypeNone,
30 ResourceFetcher::FRAME_ASSOCIATED_LOADER,
31 base::Bind(&ManifestFetcher::OnLoadComplete,
32 base::Unretained(this)));
35 void ManifestFetcher::Cancel() {
36 DCHECK(!completed_);
37 fetcher_->Cancel();
40 void ManifestFetcher::OnLoadComplete(const blink::WebURLResponse& response,
41 const std::string& data) {
42 DCHECK(!completed_);
43 completed_ = true;
45 Callback callback = callback_;
46 callback.Run(response, data);
49 } // namespace content