[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / bitmap_fetcher.cc
blob023111b58c07ab49f50b12d17209b971b6df68bc
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 "chrome/browser/bitmap_fetcher.h"
7 #include "content/public/browser/browser_thread.h"
8 #include "net/url_request/url_fetcher.h"
9 #include "net/url_request/url_request_context_getter.h"
10 #include "net/url_request/url_request_status.h"
12 namespace chrome {
14 BitmapFetcher::BitmapFetcher(const GURL& url,
15 BitmapFetcherDelegate* delegate)
16 : url_(url),
17 delegate_(delegate) {
20 BitmapFetcher::~BitmapFetcher() {}
22 void BitmapFetcher::Start(net::URLRequestContextGetter* request_context,
23 const std::string& referrer,
24 net::URLRequest::ReferrerPolicy referrer_policy,
25 int load_flags) {
26 if (url_fetcher_ != NULL)
27 return;
29 url_fetcher_.reset(net::URLFetcher::Create(url_, net::URLFetcher::GET, this));
30 url_fetcher_->SetRequestContext(request_context);
31 url_fetcher_->SetReferrer(referrer);
32 url_fetcher_->SetReferrerPolicy(referrer_policy);
33 url_fetcher_->SetLoadFlags(load_flags);
34 url_fetcher_->Start();
37 // Methods inherited from URLFetcherDelegate.
39 void BitmapFetcher::OnURLFetchComplete(const net::URLFetcher* source) {
40 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
42 if (source->GetStatus().status() != net::URLRequestStatus::SUCCESS) {
43 ReportFailure();
44 return;
47 std::string image_data;
48 source->GetResponseAsString(&image_data);
49 image_decoder_ =
50 new ImageDecoder(this, image_data, ImageDecoder::DEFAULT_CODEC);
52 // Call start to begin decoding. The ImageDecoder will call OnImageDecoded
53 // with the data when it is done.
54 scoped_refptr<base::MessageLoopProxy> task_runner =
55 content::BrowserThread::GetMessageLoopProxyForThread(
56 content::BrowserThread::UI);
57 image_decoder_->Start(task_runner);
60 void BitmapFetcher::OnURLFetchDownloadProgress(const net::URLFetcher* source,
61 int64 current,
62 int64 total) {
63 // Do nothing here.
66 // Methods inherited from ImageDecoder::Delegate.
68 void BitmapFetcher::OnImageDecoded(const ImageDecoder* decoder,
69 const SkBitmap& decoded_image) {
70 // Make a copy of the bitmap which we pass back to the UI thread.
71 scoped_ptr<SkBitmap> bitmap(new SkBitmap());
72 decoded_image.deepCopyTo(bitmap.get());
74 // Report success.
75 delegate_->OnFetchComplete(url_, bitmap.get());
78 void BitmapFetcher::OnDecodeImageFailed(const ImageDecoder* decoder) {
79 ReportFailure();
82 void BitmapFetcher::ReportFailure() {
83 delegate_->OnFetchComplete(url_, NULL);
86 } // namespace chrome