OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 virtual void canvasChanged(HTMLCanvasElement*, const FloatRect& changedRect)
= 0; | 62 virtual void canvasChanged(HTMLCanvasElement*, const FloatRect& changedRect)
= 0; |
63 virtual void canvasResized(HTMLCanvasElement*) = 0; | 63 virtual void canvasResized(HTMLCanvasElement*) = 0; |
64 #if !ENABLE(OILPAN) | 64 #if !ENABLE(OILPAN) |
65 virtual void canvasDestroyed(HTMLCanvasElement*) = 0; | 65 virtual void canvasDestroyed(HTMLCanvasElement*) = 0; |
66 #endif | 66 #endif |
67 | 67 |
68 virtual void trace(Visitor*) { } | 68 virtual void trace(Visitor*) { } |
69 }; | 69 }; |
70 | 70 |
71 class HTMLCanvasElement FINAL : public HTMLElement, public DocumentVisibilityObs
erver, public CanvasImageSource, public ImageBufferClient, public blink::WebThre
ad::TaskObserver { | 71 class HTMLCanvasElement FINAL : public HTMLElement, public DocumentVisibilityObs
erver, public CanvasImageSource, public ImageBufferClient, public blink::WebThre
ad::TaskObserver { |
| 72 DEFINE_WRAPPERTYPEINFO(); |
72 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLCanvasElement); | 73 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLCanvasElement); |
73 public: | 74 public: |
74 DECLARE_NODE_FACTORY(HTMLCanvasElement); | 75 DECLARE_NODE_FACTORY(HTMLCanvasElement); |
75 virtual ~HTMLCanvasElement(); | 76 virtual ~HTMLCanvasElement(); |
76 | 77 |
77 void addObserver(CanvasObserver*); | 78 void addObserver(CanvasObserver*); |
78 void removeObserver(CanvasObserver*); | 79 void removeObserver(CanvasObserver*); |
79 | 80 |
80 // Attributes and functions exposed to script | 81 // Attributes and functions exposed to script |
81 int width() const { return size().width(); } | 82 int width() const { return size().width(); } |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 // after the first attempt failed. | 207 // after the first attempt failed. |
207 mutable bool m_didFailToCreateImageBuffer; | 208 mutable bool m_didFailToCreateImageBuffer; |
208 mutable bool m_didClearImageBuffer; | 209 mutable bool m_didClearImageBuffer; |
209 OwnPtr<ImageBuffer> m_imageBuffer; | 210 OwnPtr<ImageBuffer> m_imageBuffer; |
210 mutable OwnPtr<GraphicsContextStateSaver> m_contextStateSaver; | 211 mutable OwnPtr<GraphicsContextStateSaver> m_contextStateSaver; |
211 | 212 |
212 mutable RefPtr<Image> m_presentedImage; | 213 mutable RefPtr<Image> m_presentedImage; |
213 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platfor
ms that have to copy the image buffer to render (and for CSSCanvasValue). | 214 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platfor
ms that have to copy the image buffer to render (and for CSSCanvasValue). |
214 }; | 215 }; |
215 | 216 |
216 } //namespace | 217 } // namespace blink |
217 | 218 |
218 #endif | 219 #endif // HTMLCanvasElement_h |
OLD | NEW |