Chromium Code Reviews| Index: Source/core/dom/TemplateContentDocumentFragment.cpp |
| diff --git a/Source/modules/quota/StorageInfo.cpp b/Source/core/dom/TemplateContentDocumentFragment.cpp |
| similarity index 86% |
| copy from Source/modules/quota/StorageInfo.cpp |
| copy to Source/core/dom/TemplateContentDocumentFragment.cpp |
| index 0a51cee7fb5e6183740935885ccd792d1e347b97..02036bac109dbe5479798a83df79e42e03c1a8ed 100644 |
| --- a/Source/modules/quota/StorageInfo.cpp |
| +++ b/Source/core/dom/TemplateContentDocumentFragment.cpp |
| @@ -29,19 +29,16 @@ |
| */ |
|
haraken
2014/05/13 15:53:30
You can use the new, 4-line copyright.
|
| #include "config.h" |
| -#include "modules/quota/StorageInfo.h" |
| +#include "core/dom/TemplateContentDocumentFragment.h" |
| + |
| +#include "core/dom/Element.h" |
| namespace WebCore { |
| -StorageInfo::StorageInfo(unsigned long long usage, unsigned long long quota) |
| - : m_usage(usage) |
| - , m_quota(quota) |
| +void TemplateContentDocumentFragment::trace(Visitor* visitor) |
|
haraken
2014/05/13 15:53:30
We normally don't add a new file just for a trace(
keishi
2014/05/13 16:16:21
Done.
|
| { |
| - ScriptWrappable::init(this); |
| + visitor->trace(m_host); |
| + DocumentFragment::trace(visitor); |
| } |
| -StorageInfo::~StorageInfo() |
| -{ |
| } |
| - |
| -} // namespace WebCore |