OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #include "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "gfx/size.h" | 6 #include "ui/gfx/size.h" |
7 | 7 |
8 class SkBitmap; | 8 class SkBitmap; |
9 | 9 |
10 namespace webkit_glue { | 10 namespace webkit_glue { |
11 | 11 |
12 // Provides an interface to WebKit's image decoders. | 12 // Provides an interface to WebKit's image decoders. |
13 // | 13 // |
14 // Note to future: This class should be deleted. We should have our own nice | 14 // Note to future: This class should be deleted. We should have our own nice |
15 // image decoders in base/gfx, and our port should use those. Currently, it's | 15 // image decoders in base/gfx, and our port should use those. Currently, it's |
16 // the other way around. | 16 // the other way around. |
(...skipping 11 matching lines...) Expand all Loading... |
28 SkBitmap Decode(const unsigned char* data, size_t size) const; | 28 SkBitmap Decode(const unsigned char* data, size_t size) const; |
29 | 29 |
30 private: | 30 private: |
31 // Size will be empty to get the largest possible size. | 31 // Size will be empty to get the largest possible size. |
32 gfx::Size desired_icon_size_; | 32 gfx::Size desired_icon_size_; |
33 | 33 |
34 DISALLOW_COPY_AND_ASSIGN(ImageDecoder); | 34 DISALLOW_COPY_AND_ASSIGN(ImageDecoder); |
35 }; | 35 }; |
36 | 36 |
37 } // namespace webkit_glue | 37 } // namespace webkit_glue |
OLD | NEW |