Remove unnecessary scope

This commit is contained in:
Cheng Zhao 2018-01-03 19:10:48 +09:00
parent 104585e772
commit fb78052b3d

View file

@ -118,7 +118,6 @@ bool FillFileInfoWithNode(Archive::FileInfo* info,
Archive::Archive(const base::FilePath& path) Archive::Archive(const base::FilePath& path)
: path_(path), file_(base::File::FILE_OK), header_size_(0) { : path_(path), file_(base::File::FILE_OK), header_size_(0) {
{
base::ThreadRestrictions::ScopedAllowIO allow_io; base::ThreadRestrictions::ScopedAllowIO allow_io;
file_.Initialize(path_, base::File::FLAG_OPEN | base::File::FLAG_READ); file_.Initialize(path_, base::File::FLAG_OPEN | base::File::FLAG_READ);
#if defined(OS_WIN) #if defined(OS_WIN)
@ -130,7 +129,6 @@ Archive::Archive(const base::FilePath& path)
fd_ = -1; fd_ = -1;
#endif #endif
} }
}
Archive::~Archive() { Archive::~Archive() {
#if defined(OS_WIN) #if defined(OS_WIN)