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

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

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
« no previous file with comments | « third_party/crashpad/crashpad/util/posix/scoped_dir.h ('k') | third_party/crashpad/crashpad/util/util.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/crashpad/crashpad/util/posix/scoped_dir.cc
diff --git a/third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc b/third_party/crashpad/crashpad/util/posix/scoped_dir.cc
similarity index 60%
copy from third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc
copy to third_party/crashpad/crashpad/util/posix/scoped_dir.cc
index 8056011cf021b0cccafdbcf6286caf9e0f70ed5a..555900a31a2f0656ce75d813a8522371ad02f61f 100644
--- a/third_party/crashpad/crashpad/minidump/minidump_user_extension_stream_data_source.cc
+++ b/third_party/crashpad/crashpad/util/posix/scoped_dir.cc
@@ -12,19 +12,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include "minidump/minidump_user_extension_stream_data_source.h"
+#include "util/posix/scoped_dir.h"
-namespace crashpad {
+#include "base/logging.h"
+#include "base/posix/eintr_wrapper.h"
-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) {}
+namespace crashpad {
+namespace internal {
-MinidumpUserExtensionStreamDataSource::
- ~MinidumpUserExtensionStreamDataSource() {}
+void ScopedDIRCloser::operator()(DIR* dir) const {
+ if (dir && IGNORE_EINTR(closedir(dir)) != 0) {
+ PLOG(ERROR) << "closedir";
+ }
+}
+} // namespace internal
} // namespace crashpad
« no previous file with comments | « third_party/crashpad/crashpad/util/posix/scoped_dir.h ('k') | third_party/crashpad/crashpad/util/util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698