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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGTests.h

Issue 2741463002: Remove SVGTests.requiredFeatures attribute
Patch Set: rebase Created 3 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2010 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 16 matching lines...) Expand all
27 namespace blink { 27 namespace blink {
28 28
29 class QualifiedName; 29 class QualifiedName;
30 class SVGElement; 30 class SVGElement;
31 class SVGStaticStringList; 31 class SVGStaticStringList;
32 class SVGStringListTearOff; 32 class SVGStringListTearOff;
33 33
34 class CORE_EXPORT SVGTests : public GarbageCollectedMixin { 34 class CORE_EXPORT SVGTests : public GarbageCollectedMixin {
35 public: 35 public:
36 // JS API 36 // JS API
37 SVGStringListTearOff* requiredFeatures();
38 SVGStringListTearOff* requiredExtensions(); 37 SVGStringListTearOff* requiredExtensions();
39 SVGStringListTearOff* systemLanguage(); 38 SVGStringListTearOff* systemLanguage();
40 39
41 bool isValid() const; 40 bool isValid() const;
42 41
43 bool isKnownAttribute(const QualifiedName&); 42 bool isKnownAttribute(const QualifiedName&);
44 43
45 DECLARE_VIRTUAL_TRACE(); 44 DECLARE_VIRTUAL_TRACE();
46 45
47 protected: 46 protected:
48 explicit SVGTests(SVGElement* contextElement); 47 explicit SVGTests(SVGElement* contextElement);
49 48
50 private: 49 private:
51 Member<SVGStaticStringList> m_requiredFeatures;
52 Member<SVGStaticStringList> m_requiredExtensions; 50 Member<SVGStaticStringList> m_requiredExtensions;
53 Member<SVGStaticStringList> m_systemLanguage; 51 Member<SVGStaticStringList> m_systemLanguage;
54 }; 52 };
55 53
56 } // namespace blink 54 } // namespace blink
57 55
58 #endif // SVGTests_h 56 #endif // SVGTests_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698