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

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

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_decoder.cc ('k') | chrome/browser/chromeos/login/image_downloader.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.h
diff --git a/chrome/browser/chromeos/login/image_downloader.h b/chrome/browser/chromeos/login/image_downloader.h
new file mode 100644
index 0000000000000000000000000000000000000000..61d773caeae4784930ef81fb185815e3c37c25bd
--- /dev/null
+++ b/chrome/browser/chromeos/login/image_downloader.h
@@ -0,0 +1,46 @@
+// 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DOWNLOADER_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DOWNLOADER_H_
+
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/scoped_ptr.h"
+#include "chrome/browser/chromeos/login/image_decoder.h"
+#include "chrome/common/net/url_fetcher.h"
+#include "googleurl/src/gurl.h"
+
+namespace chromeos {
+
+// Downloads the image, decodes it in a sandboxed process.
+// This objects deletes itself after OnURLFetchComplete.
+class ImageDownloader : public URLFetcher::Delegate {
+ public:
+ // Starts downloading the picture. Optional auth_token could be passed.
+ // Object is deleted as reference counted object.
+ ImageDownloader(ImageDecoder::Delegate* delegate,
+ const GURL& image_url,
+ const std::string& auth_token);
+ virtual ~ImageDownloader() {}
+
+ private:
+ // Overriden from URLFetcher::Delegate:
+ virtual void OnURLFetchComplete(const URLFetcher* source,
+ const GURL& url,
+ const URLRequestStatus& status,
+ int response_code,
+ const ResponseCookies& cookies,
+ const std::string& data);
+
+ ImageDecoder::Delegate* delegate_;
+ scoped_ptr<URLFetcher> image_fetcher_;
+
+ DISALLOW_COPY_AND_ASSIGN(ImageDownloader);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DOWNLOADER_H_
« no previous file with comments | « chrome/browser/chromeos/login/image_decoder.cc ('k') | chrome/browser/chromeos/login/image_downloader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698