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

Unified Diff: chrome/browser/chromeos/file_system_provider/throttled_file_system.cc

Issue 957983002: Change DCHECKs to CHECKs to investigate a crash when aborting in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up. Created 5 years, 10 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
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/queue.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
diff --git a/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc b/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
index 66e3965ffffba9af2ed6d98ea963d013a9510616..df4e424d3e7633fda4bfda99da1de1d698b25401 100644
--- a/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
+++ b/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
@@ -216,7 +216,7 @@ void ThrottledFileSystem::OnCloseFileCompleted(
// closed on the C++ side. Release the task from the queue, so other files
// which are enqueued can be opened.
const auto it = opened_files_.find(file_handle);
- DCHECK(it != opened_files_.end());
+ CHECK(it != opened_files_.end());
const int queue_token = it->second;
open_queue_->Remove(queue_token);
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/queue.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698