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

Unified Diff: ppapi/shared_impl/file_growth.cc

Issue 174213003: PPAPI: Use clang-format on ppapi/shared_impl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: remove DEPS Created 6 years, 10 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
« no previous file with comments | « ppapi/shared_impl/file_growth.h ('k') | ppapi/shared_impl/file_io_state_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/file_growth.cc
diff --git a/ppapi/shared_impl/file_growth.cc b/ppapi/shared_impl/file_growth.cc
index ac97506dd23140e93ebec036f90e320b89d786e9..79f6b5cded246dfff3366991e09cde0115e1631f 100644
--- a/ppapi/shared_impl/file_growth.cc
+++ b/ppapi/shared_impl/file_growth.cc
@@ -8,10 +8,7 @@
namespace ppapi {
-FileGrowth::FileGrowth()
- : max_written_offset(0),
- append_mode_write_amount(0) {
-}
+FileGrowth::FileGrowth() : max_written_offset(0), append_mode_write_amount(0) {}
FileGrowth::FileGrowth(int64_t max_written_offset,
int64_t append_mode_write_amount)
@@ -25,7 +22,8 @@ FileGrowthMap FileSizeMapToFileGrowthMapForTesting(
const FileSizeMap& file_sizes) {
FileGrowthMap file_growths;
for (FileSizeMap::const_iterator it = file_sizes.begin();
- it != file_sizes.end(); ++it)
+ it != file_sizes.end();
+ ++it)
file_growths[it->first] = FileGrowth(it->second, 0);
return file_growths;
}
@@ -34,7 +32,8 @@ FileSizeMap FileGrowthMapToFileSizeMapForTesting(
const FileGrowthMap& file_growths) {
FileSizeMap file_sizes;
for (FileGrowthMap::const_iterator it = file_growths.begin();
- it != file_growths.end(); ++it)
+ it != file_growths.end();
+ ++it)
file_sizes[it->first] = it->second.max_written_offset;
return file_sizes;
}
« no previous file with comments | « ppapi/shared_impl/file_growth.h ('k') | ppapi/shared_impl/file_io_state_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698