| OLD | NEW |
| 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 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "platform/PlatformExport.h" | 30 #include "platform/PlatformExport.h" |
| 31 #include "platform/SharedBuffer.h" | 31 #include "platform/SharedBuffer.h" |
| 32 #include "platform/geometry/IntRect.h" | 32 #include "platform/geometry/IntRect.h" |
| 33 #include "platform/graphics/Color.h" | 33 #include "platform/graphics/Color.h" |
| 34 #include "platform/graphics/GraphicsTypes.h" | 34 #include "platform/graphics/GraphicsTypes.h" |
| 35 #include "platform/graphics/ImageAnimationPolicy.h" | 35 #include "platform/graphics/ImageAnimationPolicy.h" |
| 36 #include "platform/graphics/ImageObserver.h" | 36 #include "platform/graphics/ImageObserver.h" |
| 37 #include "platform/graphics/ImageOrientation.h" | 37 #include "platform/graphics/ImageOrientation.h" |
| 38 #include "platform/graphics/paint/PaintCanvas.h" | 38 #include "platform/graphics/paint/PaintCanvas.h" |
| 39 #include "platform/graphics/paint/PaintFlags.h" | 39 #include "platform/graphics/paint/PaintFlags.h" |
| 40 #include "platform/wtf/Assertions.h" |
| 41 #include "platform/wtf/Noncopyable.h" |
| 42 #include "platform/wtf/PassRefPtr.h" |
| 43 #include "platform/wtf/RefPtr.h" |
| 44 #include "platform/wtf/ThreadSafeRefCounted.h" |
| 45 #include "platform/wtf/text/WTFString.h" |
| 40 #include "third_party/skia/include/core/SkRefCnt.h" | 46 #include "third_party/skia/include/core/SkRefCnt.h" |
| 41 #include "wtf/Assertions.h" | |
| 42 #include "wtf/Noncopyable.h" | |
| 43 #include "wtf/PassRefPtr.h" | |
| 44 #include "wtf/RefPtr.h" | |
| 45 #include "wtf/ThreadSafeRefCounted.h" | |
| 46 #include "wtf/text/WTFString.h" | |
| 47 | 47 |
| 48 class SkImage; | 48 class SkImage; |
| 49 class SkMatrix; | 49 class SkMatrix; |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class FloatPoint; | 53 class FloatPoint; |
| 54 class FloatRect; | 54 class FloatRect; |
| 55 class FloatSize; | 55 class FloatSize; |
| 56 class GraphicsContext; | 56 class GraphicsContext; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 bool m_imageObserverDisabled; | 219 bool m_imageObserverDisabled; |
| 220 }; | 220 }; |
| 221 | 221 |
| 222 #define DEFINE_IMAGE_TYPE_CASTS(typeName) \ | 222 #define DEFINE_IMAGE_TYPE_CASTS(typeName) \ |
| 223 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), \ | 223 DEFINE_TYPE_CASTS(typeName, Image, image, image->is##typeName(), \ |
| 224 image.is##typeName()) | 224 image.is##typeName()) |
| 225 | 225 |
| 226 } // namespace blink | 226 } // namespace blink |
| 227 | 227 |
| 228 #endif | 228 #endif |
| OLD | NEW |