Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: Source/core/svg/SVGZoomEvent.cpp

Issue 18098007: Get rid of SVGPoint special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGZoomEvent.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 float SVGZoomEvent::previousScale() const 42 float SVGZoomEvent::previousScale() const
43 { 43 {
44 return m_previousScale; 44 return m_previousScale;
45 } 45 }
46 46
47 void SVGZoomEvent::setPreviousScale(float scale) 47 void SVGZoomEvent::setPreviousScale(float scale)
48 { 48 {
49 m_previousScale = scale; 49 m_previousScale = scale;
50 } 50 }
51 51
52 FloatPoint SVGZoomEvent::previousTranslate() const 52 SVGPoint SVGZoomEvent::previousTranslate() const
53 { 53 {
54 return m_previousTranslate; 54 return m_previousTranslate;
55 } 55 }
56 56
57 float SVGZoomEvent::newScale() const 57 float SVGZoomEvent::newScale() const
58 { 58 {
59 return m_newScale; 59 return m_newScale;
60 } 60 }
61 61
62 void SVGZoomEvent::setNewScale(float scale) 62 void SVGZoomEvent::setNewScale(float scale)
63 { 63 {
64 m_newScale = scale; 64 m_newScale = scale;
65 } 65 }
66 66
67 FloatPoint SVGZoomEvent::newTranslate() const 67 SVGPoint SVGZoomEvent::newTranslate() const
68 { 68 {
69 return m_newTranslate; 69 return m_newTranslate;
70 } 70 }
71 71
72 const AtomicString& SVGZoomEvent::interfaceName() const 72 const AtomicString& SVGZoomEvent::interfaceName() const
73 { 73 {
74 return eventNames().interfaceForSVGZoomEvent; 74 return eventNames().interfaceForSVGZoomEvent;
75 } 75 }
76 76
77 } // namespace WebCore 77 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/svg/SVGZoomEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698