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

Unified Diff: Source/core/storage/DOMWindowStorageController.cpp

Issue 810623004: Oilpan: fix build after r187279. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: compile fix Created 6 years 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 | « Source/core/storage/DOMWindowStorageController.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/DOMWindowStorageController.cpp
diff --git a/Source/core/storage/DOMWindowStorageController.cpp b/Source/core/storage/DOMWindowStorageController.cpp
index 1a2363c89e0510e9d46bf09509003136bef2d608..55611fe4a41ed11dafbdaea1989245cbb4c93e0f 100644
--- a/Source/core/storage/DOMWindowStorageController.cpp
+++ b/Source/core/storage/DOMWindowStorageController.cpp
@@ -22,6 +22,12 @@ DOMWindowStorageController::~DOMWindowStorageController()
{
}
+void DOMWindowStorageController::trace(Visitor* visitor)
+{
+ visitor->trace(m_document);
+ WillBeHeapSupplement<Document>::trace(visitor);
+}
+
// static
const char* DOMWindowStorageController::supplementName()
{
« no previous file with comments | « Source/core/storage/DOMWindowStorageController.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698