1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_IMAGE_DECODER_H_
6 #define CHROME_BROWSER_IMAGE_DECODER_H_
11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/threading/sequenced_worker_pool.h"
14 #include "content/public/browser/utility_process_host_client.h"
18 // Decodes an image in a sandboxed process.
19 class ImageDecoder
: public content::UtilityProcessHostClient
{
23 // Called when image is decoded.
24 // |decoder| is used to identify the image in case of decoding several
25 // images simultaneously.
26 virtual void OnImageDecoded(const ImageDecoder
* decoder
,
27 const SkBitmap
& decoded_image
) = 0;
29 // Called when decoding image failed. Delegate can do some cleanup in
31 virtual void OnDecodeImageFailed(const ImageDecoder
* decoder
) {}
34 virtual ~Delegate() {}
38 DEFAULT_CODEC
= 0, // Uses WebKit image decoding (via WebImage).
39 ROBUST_JPEG_CODEC
, // Restrict decoding to robust jpeg codec.
42 ImageDecoder(Delegate
* delegate
,
43 const std::string
& image_data
,
44 ImageCodec image_codec
);
46 ImageDecoder(Delegate
* delegate
,
47 const std::vector
<char>& image_data
,
48 ImageCodec image_codec
);
50 // Starts asynchronous image decoding. Once finished, the callback will be
51 // posted back to |task_runner|.
52 void Start(scoped_refptr
<base::SequencedTaskRunner
> task_runner
);
54 const std::vector
<unsigned char>& get_image_data() const {
58 void set_delegate(Delegate
* delegate
) { delegate_
= delegate
; }
59 void set_shrink_to_fit(bool shrink_to_fit
) { shrink_to_fit_
= shrink_to_fit
; }
62 // It's a reference counted object, so destructor is private.
63 ~ImageDecoder() override
;
65 // Overidden from UtilityProcessHostClient:
66 bool OnMessageReceived(const IPC::Message
& message
) override
;
68 // IPC message handlers.
69 void OnDecodeImageSucceeded(const SkBitmap
& decoded_image
);
70 void OnDecodeImageFailed();
72 // Launches sandboxed process that will decode the image.
73 void DecodeImageInSandbox(const std::vector
<unsigned char>& image_data
);
76 std::vector
<unsigned char> image_data_
;
77 const ImageCodec image_codec_
;
78 scoped_refptr
<base::SequencedTaskRunner
> task_runner_
;
79 bool shrink_to_fit_
; // if needed for IPC msg size limit
81 DISALLOW_COPY_AND_ASSIGN(ImageDecoder
);
84 #endif // CHROME_BROWSER_IMAGE_DECODER_H_