summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl
diff options
context:
space:
mode:
authortzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-20 06:58:00 +0000
committertzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-20 06:58:00 +0000
commit1d0da9ba44eb10d07a2d59de0944e4436db59bd2 (patch)
tree992a193a11bff771cb827a794501925c9f1eddb4 /ppapi/shared_impl
parent1c4e3aee5b19a619d60bda8dc7fce4b580a2b3b7 (diff)
downloadchromium_src-1d0da9ba44eb10d07a2d59de0944e4436db59bd2.zip
chromium_src-1d0da9ba44eb10d07a2d59de0944e4436db59bd2.tar.gz
chromium_src-1d0da9ba44eb10d07a2d59de0944e4436db59bd2.tar.bz2
[Pepper] Add FileGrowth struct for append mode write
BUG=334171 Review URL: https://codereview.chromium.org/135303003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245861 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl')
-rw-r--r--ppapi/shared_impl/file_growth.cc24
-rw-r--r--ppapi/shared_impl/file_growth.h28
2 files changed, 52 insertions, 0 deletions
diff --git a/ppapi/shared_impl/file_growth.cc b/ppapi/shared_impl/file_growth.cc
new file mode 100644
index 0000000..002bd0f
--- /dev/null
+++ b/ppapi/shared_impl/file_growth.cc
@@ -0,0 +1,24 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/shared_impl/file_growth.h"
+
+#include "base/logging.h"
+
+namespace ppapi {
+
+FileGrowth::FileGrowth()
+ : max_written_offset(0),
+ append_mode_write_amount(0) {
+}
+
+FileGrowth::FileGrowth(int64_t max_written_offset,
+ int64_t append_mode_write_amount)
+ : max_written_offset(max_written_offset),
+ append_mode_write_amount(append_mode_write_amount) {
+ DCHECK_LE(0, max_written_offset);
+ DCHECK_LE(0, append_mode_write_amount);
+}
+
+} // namespace ppapi
diff --git a/ppapi/shared_impl/file_growth.h b/ppapi/shared_impl/file_growth.h
new file mode 100644
index 0000000..b9e83ec
--- /dev/null
+++ b/ppapi/shared_impl/file_growth.h
@@ -0,0 +1,28 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_SHARED_IMPL_FILE_GROWTH_H_
+#define PPAPI_SHARED_IMPL_FILE_GROWTH_H_
+
+#include <map>
+
+#include "ppapi/c/pp_stdint.h"
+#include "ppapi/shared_impl/ppapi_shared_export.h"
+
+namespace ppapi {
+
+struct PPAPI_SHARED_EXPORT FileGrowth {
+ FileGrowth();
+ FileGrowth(int64_t max_written_offset, int64_t append_mode_write_amount);
+
+ int64_t max_written_offset;
+ int64_t append_mode_write_amount;
+};
+
+typedef std::map<int32_t, FileGrowth> FileGrowthMap;
+typedef std::map<int32_t, int64_t> FileSizeMap;
+
+} // namespace ppapi
+
+#endif // PPAPI_SHARED_IMPL_FILE_GROWTH_H_