| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 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 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef Canvas2DLayerBridge_h | 26 #ifndef Canvas2DLayerBridge_h |
| 27 #define Canvas2DLayerBridge_h | 27 #define Canvas2DLayerBridge_h |
| 28 | 28 |
| 29 #include "SkDeferredCanvas.h" | 29 #include "SkDeferredCanvas.h" |
| 30 #include "SkImage.h" | 30 #include "SkImage.h" |
| 31 #include "core/platform/graphics/GraphicsContext3D.h" | 31 #include "core/platform/graphics/GraphicsContext3D.h" |
| 32 #include "core/platform/graphics/IntSize.h" | 32 #include "platform/geometry/IntSize.h" |
| 33 #include "public/platform/WebExternalTextureLayer.h" | 33 #include "public/platform/WebExternalTextureLayer.h" |
| 34 #include "public/platform/WebExternalTextureLayerClient.h" | 34 #include "public/platform/WebExternalTextureLayerClient.h" |
| 35 #include "public/platform/WebExternalTextureMailbox.h" | 35 #include "public/platform/WebExternalTextureMailbox.h" |
| 36 #include "wtf/DoublyLinkedList.h" | 36 #include "wtf/DoublyLinkedList.h" |
| 37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
| 38 #include "wtf/RefPtr.h" | 38 #include "wtf/RefPtr.h" |
| 39 | 39 |
| 40 namespace WebKit { | 40 namespace WebKit { |
| 41 class WebGraphicsContext3D; | 41 class WebGraphicsContext3D; |
| 42 } | 42 } |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 MailboxInfo(const MailboxInfo&); | 134 MailboxInfo(const MailboxInfo&); |
| 135 MailboxInfo() {} | 135 MailboxInfo() {} |
| 136 }; | 136 }; |
| 137 MailboxInfo* createMailboxInfo(); | 137 MailboxInfo* createMailboxInfo(); |
| 138 | 138 |
| 139 uint32_t m_lastImageId; | 139 uint32_t m_lastImageId; |
| 140 Vector<MailboxInfo> m_mailboxes; | 140 Vector<MailboxInfo> m_mailboxes; |
| 141 }; | 141 }; |
| 142 } | 142 } |
| 143 #endif | 143 #endif |
| OLD | NEW |