// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "sandbox/linux/tests/scoped_temporary_file.h" #include <stdlib.h> #include <string.h> #include <unistd.h> #include "base/check_op.h" #include "base/files/file_util.h" #include "base/posix/eintr_wrapper.h" #include "build/build_config.h" namespace sandbox { ScopedTemporaryFile::ScopedTemporaryFile() { … } ScopedTemporaryFile::~ScopedTemporaryFile() { … } } // namespace sandbox