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

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 411743002: Remove isSVGPath (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGPath.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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 435
436 // FIXME: Until all SVG renders can be subclasses of RenderSVGModelObject we have 436 // FIXME: Until all SVG renders can be subclasses of RenderSVGModelObject we have
437 // to add SVG renderer methods to RenderObject with an ASSERT_NOT_REACHED() default implementation. 437 // to add SVG renderer methods to RenderObject with an ASSERT_NOT_REACHED() default implementation.
438 virtual bool isSVG() const { return false; } 438 virtual bool isSVG() const { return false; }
439 virtual bool isSVGRoot() const { return false; } 439 virtual bool isSVGRoot() const { return false; }
440 virtual bool isSVGContainer() const { return false; } 440 virtual bool isSVGContainer() const { return false; }
441 virtual bool isSVGTransformableContainer() const { return false; } 441 virtual bool isSVGTransformableContainer() const { return false; }
442 virtual bool isSVGViewportContainer() const { return false; } 442 virtual bool isSVGViewportContainer() const { return false; }
443 virtual bool isSVGGradientStop() const { return false; } 443 virtual bool isSVGGradientStop() const { return false; }
444 virtual bool isSVGHiddenContainer() const { return false; } 444 virtual bool isSVGHiddenContainer() const { return false; }
445 virtual bool isSVGPath() const { return false; }
446 virtual bool isSVGShape() const { return false; } 445 virtual bool isSVGShape() const { return false; }
447 virtual bool isSVGText() const { return false; } 446 virtual bool isSVGText() const { return false; }
448 virtual bool isSVGTextPath() const { return false; } 447 virtual bool isSVGTextPath() const { return false; }
449 virtual bool isSVGInline() const { return false; } 448 virtual bool isSVGInline() const { return false; }
450 virtual bool isSVGInlineText() const { return false; } 449 virtual bool isSVGInlineText() const { return false; }
451 virtual bool isSVGImage() const { return false; } 450 virtual bool isSVGImage() const { return false; }
452 virtual bool isSVGForeignObject() const { return false; } 451 virtual bool isSVGForeignObject() const { return false; }
453 virtual bool isSVGResourceContainer() const { return false; } 452 virtual bool isSVGResourceContainer() const { return false; }
454 virtual bool isSVGResourceFilter() const { return false; } 453 virtual bool isSVGResourceFilter() const { return false; }
455 virtual bool isSVGResourceFilterPrimitive() const { return false; } 454 virtual bool isSVGResourceFilterPrimitive() const { return false; }
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1495 void showTree(const blink::RenderObject*); 1494 void showTree(const blink::RenderObject*);
1496 void showLineTree(const blink::RenderObject*); 1495 void showLineTree(const blink::RenderObject*);
1497 void showRenderTree(const blink::RenderObject* object1); 1496 void showRenderTree(const blink::RenderObject* object1);
1498 // We don't make object2 an optional parameter so that showRenderTree 1497 // We don't make object2 an optional parameter so that showRenderTree
1499 // can be called from gdb easily. 1498 // can be called from gdb easily.
1500 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1499 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1501 1500
1502 #endif 1501 #endif
1503 1502
1504 #endif // RenderObject_h 1503 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698