| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "third_party/skia/include/core/SkBitmap.h" | 43 #include "third_party/skia/include/core/SkBitmap.h" |
| 44 #include "wtf/Deque.h" | 44 #include "wtf/Deque.h" |
| 45 #include "wtf/Noncopyable.h" | 45 #include "wtf/Noncopyable.h" |
| 46 #include "wtf/OwnPtr.h" | 46 #include "wtf/OwnPtr.h" |
| 47 #include "wtf/PassOwnPtr.h" | 47 #include "wtf/PassOwnPtr.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class Extensions3DUtil; | 51 class Extensions3DUtil; |
| 52 class ImageBuffer; | 52 class ImageBuffer; |
| 53 class ImageData; | |
| 54 class WebExternalBitmap; | 53 class WebExternalBitmap; |
| 55 class WebExternalTextureLayer; | 54 class WebExternalTextureLayer; |
| 56 class WebGraphicsContext3D; | 55 class WebGraphicsContext3D; |
| 57 class WebLayer; | 56 class WebLayer; |
| 58 | 57 |
| 59 // Abstract interface to allow basic context eviction management | 58 // Abstract interface to allow basic context eviction management |
| 60 class PLATFORM_EXPORT ContextEvictionManager : public RefCounted<ContextEviction
Manager> { | 59 class PLATFORM_EXPORT ContextEvictionManager : public RefCounted<ContextEviction
Manager> { |
| 61 public: | 60 public: |
| 62 virtual ~ContextEvictionManager() {}; | 61 virtual ~ContextEvictionManager() {}; |
| 63 | 62 |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 // used to resize the Canvas. | 296 // used to resize the Canvas. |
| 298 SkBitmap m_resizingBitmap; | 297 SkBitmap m_resizingBitmap; |
| 299 | 298 |
| 300 // Used to flip a bitmap vertically. | 299 // Used to flip a bitmap vertically. |
| 301 Vector<uint8_t> m_scanline; | 300 Vector<uint8_t> m_scanline; |
| 302 }; | 301 }; |
| 303 | 302 |
| 304 } // namespace blink | 303 } // namespace blink |
| 305 | 304 |
| 306 #endif // DrawingBuffer_h | 305 #endif // DrawingBuffer_h |
| OLD | NEW |