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 #if !ENABLE(OILPAN) | 62 #if !ENABLE(OILPAN) |
63 virtual void canvasDestroyed(HTMLCanvasElement*) = 0; | 63 virtual void canvasDestroyed(HTMLCanvasElement*) = 0; |
64 #endif | 64 #endif |
65 | 65 |
66 virtual void trace(Visitor*) { } | 66 virtual void trace(Visitor*) { } |
67 }; | 67 }; |
68 | 68 |
69 class HTMLCanvasElement FINAL : public HTMLElement, public DocumentVisibilityObs
erver, public CanvasImageSource, public ImageBufferClient { | 69 class HTMLCanvasElement FINAL : public HTMLElement, public DocumentVisibilityObs
erver, public CanvasImageSource, public ImageBufferClient { |
70 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLCanvasElement); | 70 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLCanvasElement); |
71 public: | 71 public: |
72 static PassRefPtrWillBeRawPtr<HTMLCanvasElement> create(Document&); | 72 DECLARE_NODE_FACTORY(HTMLCanvasElement); |
73 virtual ~HTMLCanvasElement(); | 73 virtual ~HTMLCanvasElement(); |
74 | 74 |
75 void addObserver(CanvasObserver*); | 75 void addObserver(CanvasObserver*); |
76 void removeObserver(CanvasObserver*); | 76 void removeObserver(CanvasObserver*); |
77 | 77 |
78 // Attributes and functions exposed to script | 78 // Attributes and functions exposed to script |
79 int width() const { return size().width(); } | 79 int width() const { return size().width(); } |
80 int height() const { return size().height(); } | 80 int height() const { return size().height(); } |
81 | 81 |
82 const IntSize& size() const { return m_size; } | 82 const IntSize& size() const { return m_size; } |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 OwnPtr<ImageBuffer> m_imageBuffer; | 199 OwnPtr<ImageBuffer> m_imageBuffer; |
200 mutable OwnPtr<GraphicsContextStateSaver> m_contextStateSaver; | 200 mutable OwnPtr<GraphicsContextStateSaver> m_contextStateSaver; |
201 | 201 |
202 mutable RefPtr<Image> m_presentedImage; | 202 mutable RefPtr<Image> m_presentedImage; |
203 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platfor
ms that have to copy the image buffer to render (and for CSSCanvasValue). | 203 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platfor
ms that have to copy the image buffer to render (and for CSSCanvasValue). |
204 }; | 204 }; |
205 | 205 |
206 } //namespace | 206 } //namespace |
207 | 207 |
208 #endif | 208 #endif |
OLD | NEW |