Index: third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp |
diff --git a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp |
index 5661c9bdf90be67f6443de29f79b850beeab25d3..a09b4254f42a6200f12ec8702461664029eeaa87 100644 |
--- a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp |
+++ b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp |
@@ -143,14 +143,14 @@ void LocalFileSystem::fileSystemNotAvailable( |
PassRefPtrWillBeRawPtr<ExecutionContext> context, |
CallbackWrapper* callbacks) |
{ |
- context->postTask(FROM_HERE, createSameThreadTask(&reportFailure, callbacks->release(), FileError::ABORT_ERR)); |
+ context->postTask(BLINK_FROM_HERE, createSameThreadTask(&reportFailure, callbacks->release(), FileError::ABORT_ERR)); |
} |
void LocalFileSystem::fileSystemNotAllowedInternal( |
PassRefPtrWillBeRawPtr<ExecutionContext> context, |
CallbackWrapper* callbacks) |
{ |
- context->postTask(FROM_HERE, createSameThreadTask(&reportFailure, callbacks->release(), FileError::ABORT_ERR)); |
+ context->postTask(BLINK_FROM_HERE, createSameThreadTask(&reportFailure, callbacks->release(), FileError::ABORT_ERR)); |
} |
void LocalFileSystem::fileSystemAllowedInternal( |