| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2007 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 14 matching lines...) Expand all Loading... |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "HTMLCanvasElement.h" | 29 #include "HTMLCanvasElement.h" |
| 30 | 30 |
| 31 #include <math.h> | 31 #include <math.h> |
| 32 #include <stdio.h> | 32 #include <stdio.h> |
| 33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
| 34 #include "ImageData.h" | 34 #include "ImageData.h" |
| 35 #include "ScriptController.h" | 35 #include "bindings/v8/ScriptController.h" |
| 36 #include "core/dom/Attribute.h" | 36 #include "core/dom/Attribute.h" |
| 37 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
| 38 #include "core/dom/ExceptionCode.h" | 38 #include "core/dom/ExceptionCode.h" |
| 39 #include "core/dom/WebCoreMemoryInstrumentation.h" | 39 #include "core/dom/WebCoreMemoryInstrumentation.h" |
| 40 #include "core/html/canvas/CanvasContextAttributes.h" | 40 #include "core/html/canvas/CanvasContextAttributes.h" |
| 41 #include "core/html/canvas/CanvasGradient.h" | 41 #include "core/html/canvas/CanvasGradient.h" |
| 42 #include "core/html/canvas/CanvasPattern.h" | 42 #include "core/html/canvas/CanvasPattern.h" |
| 43 #include "core/html/canvas/CanvasRenderingContext2D.h" | 43 #include "core/html/canvas/CanvasRenderingContext2D.h" |
| 44 #include "core/html/canvas/CanvasStyle.h" | 44 #include "core/html/canvas/CanvasStyle.h" |
| 45 #include "core/page/Chrome.h" | 45 #include "core/page/Chrome.h" |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 HTMLElement::reportMemoryUsage(memoryObjectInfo); | 585 HTMLElement::reportMemoryUsage(memoryObjectInfo); |
| 586 info.addMember(m_observers, "observers"); | 586 info.addMember(m_observers, "observers"); |
| 587 info.addMember(m_context, "context"); | 587 info.addMember(m_context, "context"); |
| 588 info.addMember(m_imageBuffer, "imageBuffer"); | 588 info.addMember(m_imageBuffer, "imageBuffer"); |
| 589 info.addMember(m_contextStateSaver, "contextStateSaver"); | 589 info.addMember(m_contextStateSaver, "contextStateSaver"); |
| 590 info.addMember(m_presentedImage, "presentedImage"); | 590 info.addMember(m_presentedImage, "presentedImage"); |
| 591 info.addMember(m_copiedImage, "copiedImage"); | 591 info.addMember(m_copiedImage, "copiedImage"); |
| 592 } | 592 } |
| 593 | 593 |
| 594 } | 594 } |
| OLD | NEW |