| Index: components/breakpad/app/breakpad_linux.cc
|
| diff --git a/components/breakpad/app/breakpad_linux.cc b/components/breakpad/app/breakpad_linux.cc
|
| index 5523fd2d56d7583033c1a9a07dee8bfa8d4be40a..e80d7530724087a8dae21b42a922bf1917d5eb83 100644
|
| --- a/components/breakpad/app/breakpad_linux.cc
|
| +++ b/components/breakpad/app/breakpad_linux.cc
|
| @@ -1600,7 +1600,7 @@ void InitNonBrowserCrashReporterForAndroid(const std::string& process_type) {
|
| // (preventing the browser from inspecting the renderer process).
|
| int minidump_fd = base::GlobalDescriptors::GetInstance()->MaybeGet(
|
| GetBreakpadClient()->GetAndroidMinidumpDescriptor());
|
| - if (minidump_fd == base::kInvalidPlatformFileValue) {
|
| + if (minidump_fd < 0) {
|
| NOTREACHED() << "Could not find minidump FD, crash reporting disabled.";
|
| } else {
|
| EnableNonBrowserCrashDumping(process_type, minidump_fd);
|
|
|