| Index: content/browser/android/content_view_statics.cc
|
| diff --git a/content/browser/android/content_view_statics.cc b/content/browser/android/content_view_statics.cc
|
| index 31eaabeb0b52398e03805b9e207f7efcffc66998..1c4e9035d152413ba6670c9b5286a6cb5b1c80d3 100644
|
| --- a/content/browser/android/content_view_statics.cc
|
| +++ b/content/browser/android/content_view_statics.cc
|
| @@ -83,7 +83,7 @@ class SuspendedProcessWatcher : public content::RenderProcessHostObserver {
|
| std::vector<int>::iterator pos = std::find(suspended_processes_.begin(),
|
| suspended_processes_.end(),
|
| host->GetID());
|
| - DCHECK_NE(pos, suspended_processes_.end());
|
| + DCHECK(pos != suspended_processes_.end());
|
| host->RemoveObserver(this);
|
| suspended_processes_.erase(pos);
|
| }
|
|
|