OLD | NEW |
1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 MinidumpCrashpadInfoWriter::MinidumpCrashpadInfoWriter() | 23 MinidumpCrashpadInfoWriter::MinidumpCrashpadInfoWriter() |
24 : MinidumpStreamWriter(), crashpad_info_(), module_list_(nullptr) { | 24 : MinidumpStreamWriter(), crashpad_info_(), module_list_(nullptr) { |
25 crashpad_info_.version = MinidumpCrashpadInfo::kVersion; | 25 crashpad_info_.version = MinidumpCrashpadInfo::kVersion; |
26 } | 26 } |
27 | 27 |
28 MinidumpCrashpadInfoWriter::~MinidumpCrashpadInfoWriter() { | 28 MinidumpCrashpadInfoWriter::~MinidumpCrashpadInfoWriter() { |
29 } | 29 } |
30 | 30 |
31 void MinidumpCrashpadInfoWriter::SetModuleList( | 31 void MinidumpCrashpadInfoWriter::SetModuleList( |
32 MinidumpModuleCrashpadInfoListWriter* module_list) { | 32 scoped_ptr<MinidumpModuleCrashpadInfoListWriter> module_list) { |
33 DCHECK_EQ(state(), kStateMutable); | 33 DCHECK_EQ(state(), kStateMutable); |
34 | 34 |
35 module_list_ = module_list; | 35 module_list_ = module_list.Pass(); |
36 } | 36 } |
37 | 37 |
38 bool MinidumpCrashpadInfoWriter::Freeze() { | 38 bool MinidumpCrashpadInfoWriter::Freeze() { |
39 DCHECK_EQ(state(), kStateMutable); | 39 DCHECK_EQ(state(), kStateMutable); |
40 | 40 |
41 if (!MinidumpStreamWriter::Freeze()) { | 41 if (!MinidumpStreamWriter::Freeze()) { |
42 return false; | 42 return false; |
43 } | 43 } |
44 | 44 |
45 if (module_list_) { | 45 if (module_list_) { |
46 module_list_->RegisterLocationDescriptor(&crashpad_info_.module_list); | 46 module_list_->RegisterLocationDescriptor(&crashpad_info_.module_list); |
47 } | 47 } |
48 | 48 |
49 return true; | 49 return true; |
50 } | 50 } |
51 | 51 |
52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() { | 52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() { |
53 DCHECK_GE(state(), kStateFrozen); | 53 DCHECK_GE(state(), kStateFrozen); |
54 | 54 |
55 return sizeof(crashpad_info_); | 55 return sizeof(crashpad_info_); |
56 } | 56 } |
57 | 57 |
58 std::vector<internal::MinidumpWritable*> | 58 std::vector<internal::MinidumpWritable*> |
59 MinidumpCrashpadInfoWriter::Children() { | 59 MinidumpCrashpadInfoWriter::Children() { |
60 DCHECK_GE(state(), kStateFrozen); | 60 DCHECK_GE(state(), kStateFrozen); |
61 | 61 |
62 std::vector<MinidumpWritable*> children; | 62 std::vector<MinidumpWritable*> children; |
63 if (module_list_) { | 63 if (module_list_) { |
64 children.push_back(module_list_); | 64 children.push_back(module_list_.get()); |
65 } | 65 } |
66 | 66 |
67 return children; | 67 return children; |
68 } | 68 } |
69 | 69 |
70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) { | 70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) { |
71 DCHECK_EQ(state(), kStateWritable); | 71 DCHECK_EQ(state(), kStateWritable); |
72 | 72 |
73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_)); | 73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_)); |
74 } | 74 } |
75 | 75 |
76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const { | 76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const { |
77 return kMinidumpStreamTypeCrashpadInfo; | 77 return kMinidumpStreamTypeCrashpadInfo; |
78 } | 78 } |
79 | 79 |
80 } // namespace crashpad | 80 } // namespace crashpad |
OLD | NEW |