HomeSort by relevance Sort by last modified time
    Searched defs:ImportantFileWriter (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/files/
important_file_writer.h 27 // As an added benefit, ImportantFileWriter makes it less likely that the file
28 // is corrupted by *system* crash, though even if the ImportantFileWriter call
32 // corruption may remain, thus using ImportantFileWriter is not a valid
36 // Also note that ImportantFileWriter can be *really* slow (cf. File::Flush()
37 // for details) and thus please don't block shutdown on ImportantFileWriter.
38 class BASE_EXPORT ImportantFileWriter : public NonThreadSafe {
46 // ImportantFileWriter has been created.
63 ImportantFileWriter(const FilePath& path,
67 ImportantFileWriter(const FilePath& path,
73 ~ImportantFileWriter();
    [all...]
important_file_writer.cc 68 bool result = ImportantFileWriter::WriteFileAtomically(path, *data);
77 bool ImportantFileWriter::WriteFileAtomically(const FilePath& path,
138 ImportantFileWriter::ImportantFileWriter(
141 : ImportantFileWriter(
146 ImportantFileWriter::ImportantFileWriter(
159 ImportantFileWriter::~ImportantFileWriter() {
166 bool ImportantFileWriter::HasPendingWrite() const
    [all...]

Completed in 68 milliseconds