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

Side by Side Diff: chrome/utility/image_decoder_impl.h

Issue 2475543003: Introduce the image_decoder service (Closed)
Patch Set: . Created 4 years, 1 month 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
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | chrome/utility/image_decoder_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_UTILITY_IMAGE_DECODER_IMPL_H_
6 #define CHROME_UTILITY_IMAGE_DECODER_IMPL_H_
7
8 #include "base/macros.h"
9 #include "chrome/common/image_decoder.mojom.h"
10
11 class ImageDecoderImpl : public mojom::ImageDecoder {
12 public:
13 ImageDecoderImpl();
14 explicit ImageDecoderImpl(int64_t max_message_size);
15 ~ImageDecoderImpl() override;
16
17 // Overridden from mojom::ImageDecoder:
18 void DecodeImage(const std::vector<uint8_t>& encoded_data,
19 mojom::ImageCodec codec,
20 bool shrink_to_fit,
21 const DecodeImageCallback& callback) override;
22
23 private:
24 int64_t max_message_size_;
25
26 DISALLOW_COPY_AND_ASSIGN(ImageDecoderImpl);
27 };
28
29 #endif // CHROME_UTILITY_IMAGE_DECODER_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | chrome/utility/image_decoder_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698