| Index: chrome/browser/chromeos/drive/file_system/set_property_operation.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system/set_property_operation.cc b/chrome/browser/chromeos/drive/file_system/set_property_operation.cc
|
| index 8226957dd040da4486eb6f0e09ccf9f86fcb270b..111f9b79a188645d8e9da2af56733de3c9a7db72 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/set_property_operation.cc
|
| +++ b/chrome/browser/chromeos/drive/file_system/set_property_operation.cc
|
| @@ -90,7 +90,7 @@ void SetPropertyOperation::SetProperty(
|
| const std::string& key,
|
| const std::string& value,
|
| const FileOperationCallback& callback) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| DCHECK(!callback.is_null());
|
|
|
| ResourceEntry* entry = new ResourceEntry;
|
| @@ -106,7 +106,7 @@ void SetPropertyOperation::SetPropertyAfterUpdateLocalState(
|
| const FileOperationCallback& callback,
|
| const ResourceEntry* entry,
|
| FileError result) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| DCHECK(!callback.is_null());
|
|
|
| if (result == FILE_ERROR_OK) {
|
|
|