Index: base/process/process_posix.cc |
diff --git a/base/process/process_posix.cc b/base/process/process_posix.cc |
index 9b94891dd961ba8b972ead181bf4ca5d1c0beca4..bbb342c4cf49a4b6c9072faacf5e6df78f384140 100644 |
--- a/base/process/process_posix.cc |
+++ b/base/process/process_posix.cc |
@@ -225,7 +225,6 @@ Process::Process(Process&& other) : process_(other.process_) { |
} |
Process& Process::operator=(Process&& other) { |
- DCHECK_NE(this, &other); |
process_ = other.process_; |
other.Close(); |
return *this; |