Add ScopedRemoveFile to call LoggingRemoveFile for a FilePath

Change-Id: Iea3c6d54f35fb67811732af9e17c03b24b189d7b
Reviewed-on: https://chromium-review.googlesource.com/721076
Commit-Queue: Joshua Peraza <jperaza@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
Joshua Peraza 2017-10-16 17:08:10 -07:00 committed by Commit Bot
parent 474c7331a6
commit 4d7a07f684
3 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright 2017 The Crashpad Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "util/file/scoped_remove_file.h"
#include "util/file/filesystem.h"
namespace crashpad {
void ScopedRemoveFileTraits::Free(const base::FilePath& path) {
LoggingRemoveFile(path);
}
} // namespace crashpad

View File

@ -0,0 +1,33 @@
// Copyright 2017 The Crashpad Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef CRASHPAD_UTIL_FILE_SCOPED_REMOVE_FILE_H_
#define CRASHPAD_UTIL_FILE_SCOPED_REMOVE_FILE_H_
#include "base/files/file_path.h"
#include "base/scoped_generic.h"
namespace crashpad {
struct ScopedRemoveFileTraits {
static base::FilePath InvalidValue() { return base::FilePath(); }
static void Free(const base::FilePath& path);
};
using ScopedRemoveFile =
base::ScopedGeneric<base::FilePath, ScopedRemoveFileTraits>;
} // namespace crashpad
#endif // CRASHPAD_UTIL_FILE_SCOPED_REMOVE_FILE_H_

View File

@ -48,6 +48,8 @@
'file/filesystem_win.cc',
'file/file_writer.cc',
'file/file_writer.h',
'file/scoped_remove_file.cc',
'file/scoped_remove_file.h',
'file/string_file.cc',
'file/string_file.h',
'linux/address_types.h',