diff options
author | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 01:04:59 +0000 |
---|---|---|
committer | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 01:04:59 +0000 |
commit | 25ffe85f718246d6e8b5954c27429d0ff5ddb8e3 (patch) | |
tree | ea803ea8535d126817b930a8572d852621d6b260 /ppapi/cpp/url_request_info.h | |
parent | 215b42819afef0a04b534c086f6fa85f584d3035 (diff) | |
download | chromium_src-25ffe85f718246d6e8b5954c27429d0ff5ddb8e3.zip chromium_src-25ffe85f718246d6e8b5954c27429d0ff5ddb8e3.tar.gz chromium_src-25ffe85f718246d6e8b5954c27429d0ff5ddb8e3.tar.bz2 |
Updating the C++ PPAPI to use non-dev File interfaces.
Review URL: http://codereview.chromium.org/7345001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92290 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/url_request_info.h')
-rw-r--r-- | ppapi/cpp/url_request_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/cpp/url_request_info.h b/ppapi/cpp/url_request_info.h index f0922a5..f5856d7 100644 --- a/ppapi/cpp/url_request_info.h +++ b/ppapi/cpp/url_request_info.h @@ -11,7 +11,7 @@ namespace pp { -class FileRef_Dev; +class FileRef; class Instance; class URLRequestInfo : public Resource { @@ -25,9 +25,9 @@ class URLRequestInfo : public Resource { // PPB_URLRequestInfo methods: bool SetProperty(PP_URLRequestProperty property, const Var& value); bool AppendDataToBody(const void* data, uint32_t len); - bool AppendFileToBody(const FileRef_Dev& file_ref, + bool AppendFileToBody(const FileRef& file_ref, PP_Time expected_last_modified_time = 0); - bool AppendFileRangeToBody(const FileRef_Dev& file_ref, + bool AppendFileRangeToBody(const FileRef& file_ref, int64_t start_offset, int64_t length, PP_Time expected_last_modified_time = 0); |