| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 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/GraphicsTypes3D.h" | 37 #include "platform/graphics/GraphicsTypes3D.h" |
| 38 #include "third_party/skia/include/core/SkPaint.h" | 38 #include "third_party/skia/include/core/SkPaint.h" |
| 39 #include "wtf/FastAllocBase.h" | 39 #include "wtf/Allocator.h" |
| 40 #include "wtf/Noncopyable.h" | 40 #include "wtf/Noncopyable.h" |
| 41 #include "wtf/PassRefPtr.h" | 41 #include "wtf/PassRefPtr.h" |
| 42 | 42 |
| 43 class SkBitmap; | 43 class SkBitmap; |
| 44 class SkCanvas; | 44 class SkCanvas; |
| 45 class SkImage; | 45 class SkImage; |
| 46 struct SkImageInfo; | 46 struct SkImageInfo; |
| 47 class SkPicture; | 47 class SkPicture; |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 void clear(); | 94 void clear(); |
| 95 | 95 |
| 96 private: | 96 private: |
| 97 OpacityMode m_opacityMode; | 97 OpacityMode m_opacityMode; |
| 98 IntSize m_size; | 98 IntSize m_size; |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 } // namespace blink | 101 } // namespace blink |
| 102 | 102 |
| 103 #endif | 103 #endif |
| OLD | NEW |