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

Unified Diff: content/browser/renderer_host/pepper/pepper_file_system_browser_host.h

Issue 130053003: [Pepper] Wire up append mode writing support of FileIO (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/max_written_offsets/file_sizes/g Created 6 years, 11 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
Index: content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
diff --git a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
index 6194a757da9db058c48c0ac9f8a944a8d7e4f2d1..e66dd1f0e943cfe16c30cedb6014e4dadcc88760 100644
--- a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
+++ b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
@@ -115,7 +115,7 @@ class CONTENT_EXPORT PepperFileSystemBrowserHost
int32_t OnHostMsgReserveQuota(
ppapi::host::HostMessageContext* context,
int64_t amount,
- const ppapi::FileSizeMap& max_written_offsets);
+ const ppapi::FileGrowthMap& file_growth);
bbudge 2014/01/27 21:53:37 file_growths
tzik 2014/01/28 06:12:49 Done.
void SendReplyForFileSystem(
ppapi::host::ReplyMessageContext reply_context,
@@ -137,7 +137,7 @@ class CONTENT_EXPORT PepperFileSystemBrowserHost
void GotReservedQuota(
ppapi::host::ReplyMessageContext reply_context,
int64_t amount,
- const ppapi::FileSizeMap& max_written_offsets);
+ const ppapi::FileSizeMap& file_sizes);
void DidOpenQuotaFile(
PP_Resource file_io_resource,
const OpenQuotaFileCallback& callback,

Powered by Google App Engine
This is Rietveld 408576698