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

Unified Diff: Source/core/svg/SVGSVGElement.h

Issue 18053005: Introduce SVGGraphicsElement IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/svg/SVGSVGElement.h
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
index dbf5cc80122139b45f1272a436000c719c21f1fd..01859c2b1e29dc66f958fc4c0b72772b05438875 100644
--- a/Source/core/svg/SVGSVGElement.h
+++ b/Source/core/svg/SVGSVGElement.h
@@ -27,8 +27,7 @@
#include "core/svg/SVGAnimatedRect.h"
#include "core/svg/SVGExternalResourcesRequired.h"
#include "core/svg/SVGFitToViewBox.h"
-#include "core/svg/SVGStyledTransformableElement.h"
-#include "core/svg/SVGTests.h"
+#include "core/svg/SVGGraphicsElement.h"
#include "core/svg/SVGZoomAndPan.h"
namespace WebCore {
@@ -40,16 +39,15 @@ class SVGViewSpec;
class SVGViewElement;
class SMILTimeContainer;
-class SVGSVGElement FINAL : public SVGStyledTransformableElement,
- public SVGTests,
+class SVGSVGElement FINAL : public SVGGraphicsElement,
public SVGExternalResourcesRequired,
public SVGFitToViewBox,
public SVGZoomAndPan {
public:
static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
- using SVGStyledTransformableElement::ref;
- using SVGStyledTransformableElement::deref;
+ using SVGGraphicsElement::ref;
+ using SVGGraphicsElement::deref;
virtual bool isValid() const { return SVGTests::isValid(); }
virtual bool supportsFocus() const { return true; }

Powered by Google App Engine
This is Rietveld 408576698