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

Side by Side Diff: Source/core/svg/SVGSVGElement.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/SVGSVGElement.h ('k') | Source/core/svg/SVGTextContentElement.h » ('j') | 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, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2007 Apple Inc. All rights reserved.
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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 SVGLength SVGSVGElement::createSVGLength() 386 SVGLength SVGSVGElement::createSVGLength()
387 { 387 {
388 return SVGLength(); 388 return SVGLength();
389 } 389 }
390 390
391 SVGAngle SVGSVGElement::createSVGAngle() 391 SVGAngle SVGSVGElement::createSVGAngle()
392 { 392 {
393 return SVGAngle(); 393 return SVGAngle();
394 } 394 }
395 395
396 FloatPoint SVGSVGElement::createSVGPoint() 396 SVGPoint SVGSVGElement::createSVGPoint()
397 { 397 {
398 return FloatPoint(); 398 return SVGPoint();
399 } 399 }
400 400
401 SVGMatrix SVGSVGElement::createSVGMatrix() 401 SVGMatrix SVGSVGElement::createSVGMatrix()
402 { 402 {
403 return SVGMatrix(); 403 return SVGMatrix();
404 } 404 }
405 405
406 FloatRect SVGSVGElement::createSVGRect() 406 FloatRect SVGSVGElement::createSVGRect()
407 { 407 {
408 return FloatRect(); 408 return FloatRect();
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 continue; 768 continue;
769 769
770 Element* element = toElement(node); 770 Element* element = toElement(node);
771 if (element->getIdAttribute() == id) 771 if (element->getIdAttribute() == id)
772 return element; 772 return element;
773 } 773 }
774 return 0; 774 return 0;
775 } 775 }
776 776
777 } 777 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGSVGElement.h ('k') | Source/core/svg/SVGTextContentElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698