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

Unified Diff: base/files/file_proxy.h

Issue 252583007: Replace FileUtilProxy with FileProxy in renderer_host/pepper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review Created 6 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 | base/files/file_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/files/file_proxy.h
diff --git a/base/files/file_proxy.h b/base/files/file_proxy.h
index 3c834f673eac90570c6be71095768ca8f90fdebf..b44288f5b504027583fea2c49f09bb7b8c893902 100644
--- a/base/files/file_proxy.h
+++ b/base/files/file_proxy.h
@@ -88,8 +88,13 @@ class BASE_EXPORT FileProxy : public SupportsWeakPtr<FileProxy> {
// length to simulate a new file), and false otherwise.
bool created() const { return file_.created(); }
+ // This object should not have a valid file_ when this method is called.
+ void SetFile(File file);
bbudge 2014/05/14 16:11:58 It seems logical to put this with the create funct
rvargas (doing something else) 2014/05/14 19:47:26 The only methods in between Create and this one ar
+
File TakeFile();
+ PlatformFile GetPlatformFile() const;
+
// Proxies File::Close. The callback can be null.
// This returns false if task posting to |task_runner| has failed.
bool Close(const StatusCallback& callback);
@@ -127,7 +132,6 @@ class BASE_EXPORT FileProxy : public SupportsWeakPtr<FileProxy> {
private:
friend class FileHelper;
- void SetFile(File file);
TaskRunner* task_runner() { return task_runner_.get(); }
scoped_refptr<TaskRunner> task_runner_;
« no previous file with comments | « no previous file | base/files/file_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698