| Index: Source/core/svg/SVGStringListTearOff.cpp
|
| diff --git a/Source/modules/quota/StorageInfo.cpp b/Source/core/svg/SVGStringListTearOff.cpp
|
| similarity index 83%
|
| copy from Source/modules/quota/StorageInfo.cpp
|
| copy to Source/core/svg/SVGStringListTearOff.cpp
|
| index 0a51cee7fb5e6183740935885ccd792d1e347b97..77c9753ec3423b12924c6379dd48b20cec78b0d1 100644
|
| --- a/Source/modules/quota/StorageInfo.cpp
|
| +++ b/Source/core/svg/SVGStringListTearOff.cpp
|
| @@ -29,19 +29,14 @@
|
| */
|
|
|
| #include "config.h"
|
| -#include "modules/quota/StorageInfo.h"
|
| +#include "core/svg/SVGStringListTearOff.h"
|
|
|
| namespace WebCore {
|
|
|
| -StorageInfo::StorageInfo(unsigned long long usage, unsigned long long quota)
|
| - : m_usage(usage)
|
| - , m_quota(quota)
|
| +SVGStringListTearOff::SVGStringListTearOff(PassRefPtr<SVGStringList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
|
| + : NewSVGPropertyTearOff<SVGStringList>(target, contextElement, propertyIsAnimVal, attributeName)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -StorageInfo::~StorageInfo()
|
| -{
|
| }
|
| -
|
| -} // namespace WebCore
|
|
|