Searched defs:FileGrowth (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ppapi/shared_impl/
H A Dfile_growth.h15 struct PPAPI_SHARED_EXPORT FileGrowth { struct in namespace:ppapi
16 FileGrowth();
17 FileGrowth(int64_t max_written_offset, int64_t append_mode_write_amount);
23 typedef std::map<int32_t, FileGrowth> FileGrowthMap;
H A Dfile_growth.cc11 FileGrowth::FileGrowth() : max_written_offset(0), append_mode_write_amount(0) {} function in class:ppapi::FileGrowth
13 FileGrowth::FileGrowth(int64_t max_written_offset, function in class:ppapi::FileGrowth
27 file_growths[it->first] = FileGrowth(it->second, 0);

Completed in 599 milliseconds