diff options
author | tzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-20 06:58:00 +0000 |
---|---|---|
committer | tzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-20 06:58:00 +0000 |
commit | 1d0da9ba44eb10d07a2d59de0944e4436db59bd2 (patch) | |
tree | 992a193a11bff771cb827a794501925c9f1eddb4 | |
parent | 1c4e3aee5b19a619d60bda8dc7fce4b580a2b3b7 (diff) | |
download | chromium_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
-rw-r--r-- | ppapi/ppapi_shared.gypi | 2 | ||||
-rw-r--r-- | ppapi/shared_impl/file_growth.cc | 24 | ||||
-rw-r--r-- | ppapi/shared_impl/file_growth.h | 28 |
3 files changed, 54 insertions, 0 deletions
diff --git a/ppapi/ppapi_shared.gypi b/ppapi/ppapi_shared.gypi index 01390ae..18bcc1b 100644 --- a/ppapi/ppapi_shared.gypi +++ b/ppapi/ppapi_shared.gypi @@ -21,6 +21,8 @@ 'shared_impl/dictionary_var.h', 'shared_impl/file_io_state_manager.cc', 'shared_impl/file_io_state_manager.h', + 'shared_impl/file_growth.cc', + 'shared_impl/file_growth.h', 'shared_impl/file_path.cc', 'shared_impl/file_path.h', 'shared_impl/file_ref_create_info.cc', 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_ |