summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl
diff options
context:
space:
mode:
authorjhorwich@chromium.org <jhorwich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-28 23:11:45 +0000
committerjhorwich@chromium.org <jhorwich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-28 23:11:45 +0000
commitf12a383094546716230f0f4517468c6c64299e60 (patch)
tree65e825b49b2a3589b129488690080e9aa9eceaf9 /ppapi/shared_impl
parent9a0fafb5c1fe5733282742fca8a5b5bd14e83ea6 (diff)
downloadchromium_src-f12a383094546716230f0f4517468c6c64299e60.zip
chromium_src-f12a383094546716230f0f4517468c6c64299e60.tar.gz
chromium_src-f12a383094546716230f0f4517468c6c64299e60.tar.bz2
Implement FileRef GetPathPrivate interface for O3D
This is an implementation of a new private interface to get the filepath of a file downloaded with URLLoader and URLRequestInfo.SetStreamToFile(true). The file will be read in its entirety during a successful URLLoader.FinishStreamingToFile callback. BUG=none TEST=none Review URL: http://codereview.chromium.org/8604006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111805 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl')
-rw-r--r--ppapi/shared_impl/file_ref_impl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ppapi/shared_impl/file_ref_impl.h b/ppapi/shared_impl/file_ref_impl.h
index 3f4bf8f..58ee0fe 100644
--- a/ppapi/shared_impl/file_ref_impl.h
+++ b/ppapi/shared_impl/file_ref_impl.h
@@ -47,6 +47,7 @@ class PPAPI_SHARED_EXPORT FileRefImpl : public Resource,
virtual PP_Var GetName() const OVERRIDE;
virtual PP_Var GetPath() const OVERRIDE;
virtual const PPB_FileRef_CreateInfo& GetCreateInfo() const OVERRIDE;
+ virtual PP_Var GetAbsolutePath() = 0;
private:
PPB_FileRef_CreateInfo create_info_;