Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: chrome/browser/chromeos/login/image_downloader.cc

Issue 2729020: Show Captcha dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: remove debug line Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/image_downloader.h ('k') | chrome/browser/chromeos/login/login_screen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/image_downloader.cc
diff --git a/chrome/browser/chromeos/login/image_downloader.cc b/chrome/browser/chromeos/login/image_downloader.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dfcd797e9a8f228a9e8061b698fa0ca7fcc42811
--- /dev/null
+++ b/chrome/browser/chromeos/login/image_downloader.cc
@@ -0,0 +1,62 @@
+// Copyright (c) 2010 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 "chrome/browser/chromeos/login/image_downloader.h"
+
+#include "base/logging.h"
+#include "base/message_loop.h"
+#include "chrome/browser/browser_process.h"
+#include "chrome/browser/chrome_thread.h"
+#include "chrome/browser/profile_manager.h"
+#include "chrome/common/net/url_fetcher.h"
+
+namespace chromeos {
+
+namespace {
+
+// Template for optional authorization header.
+const char kAuthorizationHeader[] = "Authorization: GoogleLogin auth=%s";
+
+} // namespace
+
+ImageDownloader::ImageDownloader(ImageDecoder::Delegate* delegate,
+ const GURL& image_url,
+ const std::string& auth_token)
+ : delegate_(delegate) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ image_fetcher_.reset(new URLFetcher(GURL(image_url), URLFetcher::GET, this));
+ image_fetcher_->set_request_context(
+ ProfileManager::GetDefaultProfile()->GetRequestContext());
+ if (!auth_token.empty()) {
+ image_fetcher_->set_extra_request_headers(
+ StringPrintf(kAuthorizationHeader, auth_token.c_str()));
+ }
+ image_fetcher_->Start();
+}
+
+void ImageDownloader::OnURLFetchComplete(const URLFetcher* source,
+ const GURL& url,
+ const URLRequestStatus& status,
+ int response_code,
+ const ResponseCookies& cookies,
+ const std::string& data) {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+ if (response_code != 200) {
+ LOG(ERROR) << "Response code is " << response_code;
+ LOG(ERROR) << "Url is " << url.spec();
+ LOG(ERROR) << "Data is " << data;
+ MessageLoop::current()->DeleteSoon(FROM_HERE, this);
+ return;
+ }
+
+ LOG(INFO) << "Decoding the image...";
+ std::vector<unsigned char> image_data(data.begin(), data.end());
+ scoped_refptr<ImageDecoder> image_decoder = new ImageDecoder(delegate_,
+ image_data);
+ image_decoder->Start();
+ MessageLoop::current()->DeleteSoon(FROM_HERE, this);
+}
+
+} // namespace chromeos
+
« no previous file with comments | « chrome/browser/chromeos/login/image_downloader.h ('k') | chrome/browser/chromeos/login/login_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698