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

Unified Diff: third_party/crashpad/crashpad/util/posix/scoped_dir.h

Issue 2814043003: Update Crashpad to 1f28a123a4c9449e3d7ddad4ff00dacd366d5216 (Closed)
Patch Set: Add missing GN config to fix compile/link. Created 3 years, 8 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/posix/scoped_dir.h
diff --git a/third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc b/third_party/crashpad/crashpad/util/posix/scoped_dir.h
similarity index 58%
copy from third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc
copy to third_party/crashpad/crashpad/util/posix/scoped_dir.h
index 8056011cf021b0cccafdbcf6286caf9e0f70ed5a..2eade40e8f0f959fefb0cde6d55f1ba6fc58aa5f 100644
--- a/third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc
+++ b/third_party/crashpad/crashpad/util/posix/scoped_dir.h
@@ -12,19 +12,27 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include "minidump/minidump_user_extension_stream_data_source.h"
+#ifndef CRASHPAD_UTIL_POSIX_SCOPED_DIR_H_
+#define CRASHPAD_UTIL_POSIX_SCOPED_DIR_H_
+
+#include <dirent.h>
+
+#include <memory>
namespace crashpad {
+namespace internal {
-MinidumpUserExtensionStreamDataSource::MinidumpUserExtensionStreamDataSource(
- uint32_t stream_type,
- const void* buffer,
- size_t buffer_size)
- : stream_type_(static_cast<MinidumpStreamType>(stream_type)),
- buffer_(buffer),
- buffer_size_(buffer_size) {}
+struct ScopedDIRCloser {
+ void operator()(DIR* dir) const;
+};
-MinidumpUserExtensionStreamDataSource::
- ~MinidumpUserExtensionStreamDataSource() {}
+} // namespace internal
+
+//! \brief Maintains a directory opened by `opendir`.
+//!
+//! On destruction, the directory will be closed by calling `closedir`.
+using ScopedDIR = std::unique_ptr<DIR, internal::ScopedDIRCloser>;
} // namespace crashpad
+
+#endif // CRASHPAD_UTIL_POSIX_SCOPED_DIR_H_
« no previous file with comments | « third_party/crashpad/crashpad/util/posix/process_info_linux.cc ('k') | third_party/crashpad/crashpad/util/posix/scoped_dir.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698