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: Source/core/platform/graphics/BitmapImage.h

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved.
4 * Copyright (C) 2008-2009 Torch Mobile, Inc. 4 * Copyright (C) 2008-2009 Torch Mobile, Inc.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 15 matching lines...) Expand all
26 */ 26 */
27 27
28 #ifndef BitmapImage_h 28 #ifndef BitmapImage_h
29 #define BitmapImage_h 29 #define BitmapImage_h
30 30
31 #include "core/platform/graphics/Color.h" 31 #include "core/platform/graphics/Color.h"
32 #include "core/platform/graphics/FrameData.h" 32 #include "core/platform/graphics/FrameData.h"
33 #include "core/platform/graphics/Image.h" 33 #include "core/platform/graphics/Image.h"
34 #include "core/platform/graphics/ImageOrientation.h" 34 #include "core/platform/graphics/ImageOrientation.h"
35 #include "core/platform/graphics/ImageSource.h" 35 #include "core/platform/graphics/ImageSource.h"
36 #include "core/platform/graphics/IntSize.h" 36 #include "platform/geometry/IntSize.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 class NativeImageSkia; 41 class NativeImageSkia;
42 template <typename T> class Timer; 42 template <typename T> class Timer;
43 43
44 class BitmapImage : public Image { 44 class BitmapImage : public Image {
45 friend class GeneratedImage; 45 friend class GeneratedImage;
46 friend class CrossfadeGeneratedImage; 46 friend class CrossfadeGeneratedImage;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 bool m_allDataReceived : 1; // Whether or not we've received all our data. 191 bool m_allDataReceived : 1; // Whether or not we've received all our data.
192 mutable bool m_haveSize : 1; // Whether or not our |m_size| member variable has the final overall image size yet. 192 mutable bool m_haveSize : 1; // Whether or not our |m_size| member variable has the final overall image size yet.
193 bool m_sizeAvailable : 1; // Whether or not we can obtain the size of the fi rst image frame yet from ImageIO. 193 bool m_sizeAvailable : 1; // Whether or not we can obtain the size of the fi rst image frame yet from ImageIO.
194 mutable bool m_hasUniformFrameSize : 1; 194 mutable bool m_hasUniformFrameSize : 1;
195 mutable bool m_haveFrameCount : 1; 195 mutable bool m_haveFrameCount : 1;
196 }; 196 };
197 197
198 } 198 }
199 199
200 #endif 200 #endif
OLDNEW
« no previous file with comments | « Source/core/platform/chromium/support/WebScrollbarImpl.cpp ('k') | Source/core/platform/graphics/BitmapImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698