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

Side by Side Diff: webkit/glue/image_decoder.h

Issue 46039: Removed unneeded includes of base/scoped_ptr.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "base/gfx/size.h" 6 #include "base/gfx/size.h"
7 #include "base/scoped_ptr.h"
8 7
9 class SkBitmap; 8 class SkBitmap;
10 9
11 namespace webkit_glue { 10 namespace webkit_glue {
12 11
13 // Provides an interface to WebKit's image decoders. 12 // Provides an interface to WebKit's image decoders.
14 // 13 //
15 // 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
16 // 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
17 // the other way around. 16 // the other way around.
(...skipping 11 matching lines...) Expand all
29 SkBitmap Decode(const unsigned char* data, size_t size) const; 28 SkBitmap Decode(const unsigned char* data, size_t size) const;
30 29
31 private: 30 private:
32 // Size will be empty to get the largest possible size. 31 // Size will be empty to get the largest possible size.
33 gfx::Size desired_icon_size_; 32 gfx::Size desired_icon_size_;
34 33
35 DISALLOW_EVIL_CONSTRUCTORS(ImageDecoder); 34 DISALLOW_EVIL_CONSTRUCTORS(ImageDecoder);
36 }; 35 };
37 36
38 } // namespace webkit_glue 37 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698