Update V8 to version 4.6.62.
[chromium-blink-merge.git] / components / suggestions / image_encoder.h
blobd0aa71d5f1c571fc0b47cbbf84a8792e7d5b9452
1 // Copyright 2014 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 COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_
6 #define COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_
8 #include <stddef.h>
9 #include <vector>
11 class SkBitmap;
13 namespace suggestions {
15 // From encoded bytes to SkBitmap. It's the caller's responsibility to delete
16 // the bitmap.
17 SkBitmap* DecodeJPEGToSkBitmap(const void* encoded_data, size_t size);
19 inline SkBitmap* DecodeJPEGToSkBitmap(
20 const std::vector<unsigned char>& encoded_data) {
21 return DecodeJPEGToSkBitmap(&encoded_data[0], encoded_data.size());
24 // From SkBitmap to a vector of JPEG-encoded bytes, |dst|.
25 bool EncodeSkBitmapToJPEG(const SkBitmap& bitmap,
26 std::vector<unsigned char>* dest);
28 } // namespace suggestions
30 #endif // COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_