Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: include/AdblockPlus/FileSystem.h

Issue 10310030: Convert references to FileSystem & Co. into shared pointers (avoid use after free) (Closed)
Patch Set: Created April 18, 2013, 11:59 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/AdblockPlus/FileSystem.h
===================================================================
--- a/include/AdblockPlus/FileSystem.h
+++ b/include/AdblockPlus/FileSystem.h
@@ -25,11 +25,13 @@ namespace AdblockPlus
Read(const std::string& path) const = 0;
virtual void Write(const std::string& path,
std::tr1::shared_ptr<std::ostream> data) = 0;
virtual void Move(const std::string& fromPath,
const std::string& toPath) = 0;
virtual void Remove(const std::string& path) = 0;
virtual StatResult Stat(const std::string& path) const = 0;
};
+
+ typedef std::tr1::shared_ptr<FileSystem> FileSystemPtr;
}
#endif

Powered by Google App Engine
This is Rietveld