Index: chrome/browser/extensions/api/image_writer_private/operation_nonchromeos.cc |
diff --git a/chrome/browser/extensions/api/image_writer_private/operation_nonchromeos.cc b/chrome/browser/extensions/api/image_writer_private/operation_nonchromeos.cc |
index b5a7e1c37a0d600d9ecb53b098bec233797086a5..1cec1ec4bb13c4fcccf405f971438499ed751d90 100644 |
--- a/chrome/browser/extensions/api/image_writer_private/operation_nonchromeos.cc |
+++ b/chrome/browser/extensions/api/image_writer_private/operation_nonchromeos.cc |
@@ -16,7 +16,7 @@ namespace image_writer { |
using content::BrowserThread; |
void Operation::Write(const base::Closure& continuation) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
if (IsCancelled()) { |
return; |
} |
@@ -44,7 +44,7 @@ void Operation::Write(const base::Closure& continuation) { |
} |
void Operation::VerifyWrite(const base::Closure& continuation) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
if (IsCancelled()) { |
return; |