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

Unified Diff: third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp

Issue 2141493002: Add missing traces for Supplement<> classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp Created 4 years, 5 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: third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
index 858537309ff120e4c7d1c6d309bfdab03bc71b17..0489559a323440cb4d478c4c8f4a6c00578183e9 100644
--- a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp
@@ -195,6 +195,12 @@ LocalFileSystem::LocalFileSystem(std::unique_ptr<FileSystemClient> client)
{
}
+DEFINE_TRACE(LocalFileSystem)
+{
+ Supplement<LocalFrame>::trace(visitor);
+ Supplement<WorkerClients>::trace(visitor);
+}
+
const char* LocalFileSystem::supplementName()
{
return "LocalFileSystem";

Powered by Google App Engine
This is Rietveld 408576698