Commit a841a18c authored by Adrienne Walker's avatar Adrienne Walker Committed by Commit Bot

cc: Remove PaintOpReader DumpWithoutCrashing

This has turned up some bugs, but is being incredibly noisy on the bots.
Remove the crash report until this is solved.

Bug: 910772
Change-Id: I9f2a7f7a1a758abe20a2304ad10da4a12fb4b9db
Reviewed-on: https://chromium-review.googlesource.com/c/1357619Reviewed-by: default avatarKhushal <khushalsagar@chromium.org>
Commit-Queue: enne <enne@chromium.org>
Cr-Commit-Position: refs/heads/master@{#612935}
parent 8a7e9620
...@@ -614,8 +614,10 @@ void PaintOpReader::AlignMemory(size_t alignment) { ...@@ -614,8 +614,10 @@ void PaintOpReader::AlignMemory(size_t alignment) {
} }
inline void PaintOpReader::SetInvalid() { inline void PaintOpReader::SetInvalid() {
if (valid_ && options_.crash_dump_on_failure) if (valid_ && options_.crash_dump_on_failure) {
base::debug::DumpWithoutCrashing(); // TODO(enne): make this DumpWithoutCrashing after http://crbug.com/910772
// base::debug::DumpWithoutCrashing();
}
valid_ = false; valid_ = false;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment