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

Unified Diff: chrome/browser/chromeos/login/image_decoder.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
Index: chrome/browser/chromeos/login/image_decoder.h
diff --git a/chrome/browser/chromeos/login/image_decoder.h b/chrome/browser/chromeos/login/image_decoder.h
new file mode 100644
index 0000000000000000000000000000000000000000..fdb9e1c49089edf0471ac06c15eb8b05f48fb25c
--- /dev/null
+++ b/chrome/browser/chromeos/login/image_decoder.h
@@ -0,0 +1,54 @@
+// 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_DECODER_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DECODER_H_
+
+#include <vector>
+
+#include "chrome/browser/utility_process_host.h"
+
+class ResourceDispatcherHost;
+
+namespace chromeos {
+
+// Decodes an image in a sandboxed process.
+class ImageDecoder : public UtilityProcessHost::Client {
+ public:
+ class Delegate {
+ public:
+ // Called when image is decoded.
+ virtual void OnImageDecoded(const SkBitmap& decoded_image) = 0;
+
+ protected:
+ virtual ~Delegate() {}
+ };
+
+ ImageDecoder(Delegate* delegate,
+ const std::vector<unsigned char>& image_data);
+
+ // Starts image decoding.
+ void Start();
+
+ private:
+ // It's a reference counted object, so destructor is private.
+ virtual ~ImageDecoder() {}
+
+ // Overidden from UtilityProcessHost::Client:
+ virtual void OnDecodeImageSucceeded(const SkBitmap& decoded_image);
+
+ // Launches sandboxed process that will decode the image.
+ void DecodeImageInSandbox(ResourceDispatcherHost* rdh,
+ const std::vector<unsigned char>& image_data);
+
+ Delegate* delegate_;
+ std::vector<unsigned char> image_data_;
+
+ DISALLOW_COPY_AND_ASSIGN(ImageDecoder);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DECODER_H_
+
« no previous file with comments | « chrome/browser/chromeos/login/google_authenticator_unittest.cc ('k') | chrome/browser/chromeos/login/image_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698