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

Unified Diff: Source/modules/filesystem/DOMFileSystemBase.h

Issue 1130793002: Oilpan: switch some leftover raw references over to traced Member<>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | Source/modules/filesystem/DOMFileSystemBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMFileSystemBase.h
diff --git a/Source/modules/filesystem/DOMFileSystemBase.h b/Source/modules/filesystem/DOMFileSystemBase.h
index 01e30436040d0d2c327230251ed7b04220780388..e5ef5d8129860b975cc91ed58a2360f00466ba9b 100644
--- a/Source/modules/filesystem/DOMFileSystemBase.h
+++ b/Source/modules/filesystem/DOMFileSystemBase.h
@@ -117,7 +117,7 @@ public:
int readDirectory(DirectoryReaderBase*, const String& path, EntriesCallback*, ErrorCallback*, SynchronousType = Asynchronous);
bool waitForAdditionalResult(int callbacksId);
- DEFINE_INLINE_VIRTUAL_TRACE() { }
+ DECLARE_VIRTUAL_TRACE();
protected:
DOMFileSystemBase(ExecutionContext*, const String& name, FileSystemType, const KURL& rootURL);
@@ -125,7 +125,7 @@ protected:
friend class DOMFileSystemBaseTest;
friend class DOMFileSystemSync;
- ExecutionContext* m_context;
+ RawPtrWillBeMember<ExecutionContext> m_context;
String m_name;
FileSystemType m_type;
KURL m_filesystemRootURL;
« no previous file with comments | « no previous file | Source/modules/filesystem/DOMFileSystemBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698