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

Unified Diff: Source/core/dom/TemplateContentDocumentFragment.cpp

Issue 283663006: Oilpan: Prepare moving HTMLTemplateElement to oipan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/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

Powered by Google App Engine
This is Rietveld 408576698