| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef ImageBufferSurface_h | 31 #ifndef ImageBufferSurface_h |
| 32 #define ImageBufferSurface_h | 32 #define ImageBufferSurface_h |
| 33 | 33 |
| 34 #include "platform/PlatformExport.h" | 34 #include "platform/PlatformExport.h" |
| 35 #include "platform/geometry/IntSize.h" | 35 #include "platform/geometry/IntSize.h" |
| 36 #include "platform/graphics/GraphicsTypes.h" | 36 #include "platform/graphics/GraphicsTypes.h" |
| 37 #include "platform/graphics/paint/PaintCanvas.h" | 37 #include "platform/graphics/paint/PaintCanvas.h" |
| 38 #include "platform/graphics/paint/PaintFlags.h" | 38 #include "platform/graphics/paint/PaintFlags.h" |
| 39 #include "platform/graphics/paint/PaintRecord.h" | 39 #include "platform/graphics/paint/PaintRecord.h" |
| 40 #include "platform/wtf/Allocator.h" |
| 41 #include "platform/wtf/Noncopyable.h" |
| 40 #include "third_party/khronos/GLES2/gl2.h" | 42 #include "third_party/khronos/GLES2/gl2.h" |
| 41 #include "third_party/skia/include/core/SkImageInfo.h" | 43 #include "third_party/skia/include/core/SkImageInfo.h" |
| 42 #include "third_party/skia/include/core/SkRefCnt.h" | 44 #include "third_party/skia/include/core/SkRefCnt.h" |
| 43 #include "wtf/Allocator.h" | |
| 44 #include "wtf/Noncopyable.h" | |
| 45 | 45 |
| 46 class SkColorSpace; | 46 class SkColorSpace; |
| 47 class SkImage; | 47 class SkImage; |
| 48 struct SkImageInfo; | 48 struct SkImageInfo; |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 class ImageBuffer; | 52 class ImageBuffer; |
| 53 class WebLayer; | 53 class WebLayer; |
| 54 class FloatRect; | 54 class FloatRect; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 private: | 118 private: |
| 119 OpacityMode m_opacityMode; | 119 OpacityMode m_opacityMode; |
| 120 IntSize m_size; | 120 IntSize m_size; |
| 121 sk_sp<SkColorSpace> m_colorSpace; | 121 sk_sp<SkColorSpace> m_colorSpace; |
| 122 SkColorType m_colorType; | 122 SkColorType m_colorType; |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } // namespace blink | 125 } // namespace blink |
| 126 | 126 |
| 127 #endif | 127 #endif |
| OLD | NEW |