| Index: storage/browser/fileapi/file_system_operation_runner.cc
|
| diff --git a/storage/browser/fileapi/file_system_operation_runner.cc b/storage/browser/fileapi/file_system_operation_runner.cc
|
| index a3612595fe409c5391de76f61785c64ad2cc4b53..cc6bd3838ffc385ecb19d2ba5b12a405d1cdef37 100644
|
| --- a/storage/browser/fileapi/file_system_operation_runner.cc
|
| +++ b/storage/browser/fileapi/file_system_operation_runner.cc
|
| @@ -306,8 +306,8 @@ OperationID FileSystemOperationRunner::Truncate(
|
| void FileSystemOperationRunner::Cancel(
|
| OperationID id,
|
| const StatusCallback& callback) {
|
| - if (ContainsKey(finished_operations_, id)) {
|
| - DCHECK(!ContainsKey(stray_cancel_callbacks_, id));
|
| + if (base::ContainsKey(finished_operations_, id)) {
|
| + DCHECK(!base::ContainsKey(stray_cancel_callbacks_, id));
|
| stray_cancel_callbacks_[id] = callback;
|
| return;
|
| }
|
|
|