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

Unified Diff: Source/modules/filesystem/EntryBase.cpp

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 9 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
« no previous file with comments | « Source/modules/filesystem/EntryBase.h ('k') | Source/modules/filesystem/EntrySync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/EntryBase.cpp
diff --git a/Source/modules/filesystem/EntryBase.cpp b/Source/modules/filesystem/EntryBase.cpp
index 5013bd0956b806543458b9b1b849d2517a85afa8..6c4d3a2c148d2c2e4e0c7a65630f0ddc25e7d630 100644
--- a/Source/modules/filesystem/EntryBase.cpp
+++ b/Source/modules/filesystem/EntryBase.cpp
@@ -38,7 +38,7 @@
namespace WebCore {
-EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+EntryBase::EntryBase(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
: m_fileSystem(fileSystem)
, m_fullPath(fullPath)
, m_name(DOMFilePath::getName(fullPath))
@@ -58,4 +58,9 @@ String EntryBase::toURL() const
return m_fileSystem->createFileSystemURL(this).string();
}
+void EntryBase::trace(Visitor* visitor)
+{
+ visitor->trace(m_fileSystem);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/modules/filesystem/EntryBase.h ('k') | Source/modules/filesystem/EntrySync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698