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

Unified Diff: include/AdblockPlus/DefaultFileSystem.h

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Patch Set: Created July 11, 2014, 2:24 p.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/DefaultFileSystem.h
===================================================================
--- a/include/AdblockPlus/DefaultFileSystem.h
+++ b/include/AdblockPlus/DefaultFileSystem.h
@@ -26,19 +26,19 @@
#define PATH_SEPARATOR '/'
#endif
namespace AdblockPlus
{
class DefaultFileSystem : public FileSystem
{
public:
- std::tr1::shared_ptr<std::istream> Read(const std::string& path) const;
+ std::shared_ptr<std::istream> Read(const std::string& path) const;
void Write(const std::string& path,
- std::tr1::shared_ptr<std::istream> data);
+ std::shared_ptr<std::istream> data);
void Move(const std::string& fromPath,
const std::string& toPath);
void Remove(const std::string& path);
StatResult Stat(const std::string& path) const;
std::string Resolve(const std::string& path) const;
void SetBasePath(const std::string& path);
protected:
std::string basePath;

Powered by Google App Engine
This is Rietveld