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

Unified Diff: third_party/crashpad/crashpad/snapshot/mac/process_snapshot_mac.cc

Issue 1921833002: Update Crashpad to 00d458adaf3868999eeab5341fce5bedb81d17a1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win fixes Created 4 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/snapshot/mac/process_snapshot_mac.cc
diff --git a/third_party/crashpad/crashpad/snapshot/mac/process_snapshot_mac.cc b/third_party/crashpad/crashpad/snapshot/mac/process_snapshot_mac.cc
index 9cabe41918922a77846dd4e9e2e13a202a404d13..2560de07d13f6908a37d3af2282e9cd947213e55 100644
--- a/third_party/crashpad/crashpad/snapshot/mac/process_snapshot_mac.cc
+++ b/third_party/crashpad/crashpad/snapshot/mac/process_snapshot_mac.cc
@@ -12,9 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+#include "snapshot/mac/process_snapshot_mac.h"
+
#include "base/logging.h"
#include "base/memory/ptr_util.h"
-#include "snapshot/mac/process_snapshot_mac.h"
#include "util/misc/tri_state.h"
namespace crashpad {
@@ -107,6 +108,8 @@ void ProcessSnapshotMac::GetCrashpadOptions(
if (local_options.gather_indirectly_referenced_memory == TriState::kUnset) {
local_options.gather_indirectly_referenced_memory =
module_options.gather_indirectly_referenced_memory;
+ local_options.indirectly_referenced_memory_cap =
+ module_options.indirectly_referenced_memory_cap;
}
// If non-default values have been found for all options, the loop can end

Powered by Google App Engine
This is Rietveld 408576698