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

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

Issue 168973002: Drop [LegacyImplementedInBaseClass] from SVGTests IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | Source/core/svg/SVGTests.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTests.h
diff --git a/Source/core/svg/SVGTests.h b/Source/core/svg/SVGTests.h
index f60b83f9e17073434123535e93dde7607a312a58..3113f518327548fb965fd406e539a7756a0455c4 100644
--- a/Source/core/svg/SVGTests.h
+++ b/Source/core/svg/SVGTests.h
@@ -32,11 +32,11 @@ class SVGElement;
class SVGTests {
public:
- SVGStringListTearOff* requiredFeatures() { return m_requiredFeatures->tearOff(); }
- SVGStringListTearOff* requiredExtensions() { return m_requiredExtensions->tearOff(); }
- SVGStringListTearOff* systemLanguage() { return m_systemLanguage->tearOff(); }
+ static SVGStringListTearOff* requiredFeatures(SVGTests* object) { return object->m_requiredFeatures->tearOff(); }
+ static SVGStringListTearOff* requiredExtensions(SVGTests* object) { return object->m_requiredExtensions->tearOff(); }
+ static SVGStringListTearOff* systemLanguage(SVGTests* object) { return object->m_systemLanguage->tearOff(); }
- bool hasExtension(const String&) const;
+ static bool hasExtension(SVGTests*, const String&);
bool isValid() const;
bool parseAttribute(const QualifiedName&, const AtomicString&);
« no previous file with comments | « no previous file | Source/core/svg/SVGTests.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698