OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DECODER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DECODER_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "chrome/browser/utility_process_host.h" |
| 11 |
| 12 class ResourceDispatcherHost; |
| 13 |
| 14 namespace chromeos { |
| 15 |
| 16 // Decodes an image in a sandboxed process. |
| 17 class ImageDecoder : public UtilityProcessHost::Client { |
| 18 public: |
| 19 class Delegate { |
| 20 public: |
| 21 // Called when image is decoded. |
| 22 virtual void OnImageDecoded(const SkBitmap& decoded_image) = 0; |
| 23 |
| 24 protected: |
| 25 virtual ~Delegate() {} |
| 26 }; |
| 27 |
| 28 ImageDecoder(Delegate* delegate, |
| 29 const std::vector<unsigned char>& image_data); |
| 30 |
| 31 // Starts image decoding. |
| 32 void Start(); |
| 33 |
| 34 private: |
| 35 // It's a reference counted object, so destructor is private. |
| 36 virtual ~ImageDecoder() {} |
| 37 |
| 38 // Overidden from UtilityProcessHost::Client: |
| 39 virtual void OnDecodeImageSucceeded(const SkBitmap& decoded_image); |
| 40 |
| 41 // Launches sandboxed process that will decode the image. |
| 42 void DecodeImageInSandbox(ResourceDispatcherHost* rdh, |
| 43 const std::vector<unsigned char>& image_data); |
| 44 |
| 45 Delegate* delegate_; |
| 46 std::vector<unsigned char> image_data_; |
| 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(ImageDecoder); |
| 49 }; |
| 50 |
| 51 } // namespace chromeos |
| 52 |
| 53 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_IMAGE_DECODER_H_ |
| 54 |
OLD | NEW |