| Index: third_party/crashpad/crashpad/util/mac/xattr.h
|
| diff --git a/third_party/crashpad/crashpad/util/mac/xattr.h b/third_party/crashpad/crashpad/util/mac/xattr.h
|
| index 3e14f672c9c62381d6bba4f337e3d159057dea3b..ebe13df507c0d0c3808a8897d080c6ee66a57747 100644
|
| --- a/third_party/crashpad/crashpad/util/mac/xattr.h
|
| +++ b/third_party/crashpad/crashpad/util/mac/xattr.h
|
| @@ -92,6 +92,15 @@ bool WriteXattrTimeT(const base::FilePath& file,
|
| const base::StringPiece& name,
|
| time_t value);
|
|
|
| +//! \brief Removes an extended attribute from a file.
|
| +//!
|
| +//! \param[in] file The path to the file.
|
| +//! \param[in] name The name of the extended attribute to remove.
|
| +//!
|
| +//! \return XattrStatus
|
| +XattrStatus RemoveXattr(const base::FilePath& file,
|
| + const base::StringPiece& name);
|
| +
|
| } // namespace crashpad
|
|
|
| #endif // CRASHPAD_UTIL_MAC_XATTR_H_
|
|
|