Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: third_party/crashpad/crashpad/util/mac/xattr.h

Issue 2277943002: Update Crashpad to b35ee1fca18956f3c27ba124d6dc456a723c7670 (Closed)
Patch Set: fix build.gn Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698