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

Side by Side Diff: services/image_decoder/public/cpp/decode.h

Issue 2715153006: Set desired_image_size when decoding images for NTP Tile icons. (Closed)
Patch Set: comment formatting Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_ 5 #ifndef SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_
6 #define SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_ 6 #define SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "services/image_decoder/public/interfaces/image_decoder.mojom.h" 12 #include "services/image_decoder/public/interfaces/image_decoder.mojom.h"
13 13
14 namespace gfx {
15 class Size;
16 }
17
14 namespace service_manager { 18 namespace service_manager {
15 class Connector; 19 class Connector;
16 } 20 }
17 21
18 namespace image_decoder { 22 namespace image_decoder {
19 23
20 const uint64_t kDefaultMaxSizeInBytes = 128 * 1024 * 1024; 24 const uint64_t kDefaultMaxSizeInBytes = 128 * 1024 * 1024;
21 25
22 // Helper function to decode an image via the image_decoder service. Upon 26 // Helper function to decode an image via the image_decoder service. For images
23 // completion, |callback| is invoked on the calling thread TaskRunner with an 27 // with multiple frames (e.g. ico files), a frame with a size as close as
24 // SkBitmap argument. The SkBitmap will be null on failure and non-null on 28 // possible to |desired_image_frame_size| is chosen (tries to take one in larger
29 // size if there's no precise match). Passing gfx::Size() as
30 // |desired_image_frame_size| is also supported and will result in chosing the
31 // smallest available size.
32 // Upon completion, |callback| is invoked on the calling thread TaskRunner with
33 // an SkBitmap argument. The SkBitmap will be null on failure and non-null on
25 // success. 34 // success.
26 void Decode(service_manager::Connector* connector, 35 void Decode(service_manager::Connector* connector,
27 const std::vector<uint8_t>& encoded_bytes, 36 const std::vector<uint8_t>& encoded_bytes,
28 mojom::ImageCodec codec, 37 mojom::ImageCodec codec,
29 bool shrink_to_fit, 38 bool shrink_to_fit,
30 uint64_t max_size_in_bytes, 39 uint64_t max_size_in_bytes,
40 const gfx::Size& desired_image_frame_size,
31 const mojom::ImageDecoder::DecodeImageCallback& callback); 41 const mojom::ImageDecoder::DecodeImageCallback& callback);
32 42
33 } // namespace image_decoder 43 } // namespace image_decoder
34 44
35 #endif // SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_ 45 #endif // SERVICES_IMAGE_DECODER_PUBLIC_CPP_DECODE_H_
OLDNEW
« no previous file with comments | « services/image_decoder/image_decoder_impl_unittest.cc ('k') | services/image_decoder/public/cpp/decode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698