summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp')
-rw-r--r--third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp b/third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp
index 159cbc6..96aaa33 100644
--- a/third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp
+++ b/third_party/WebKit/Source/web/WorkerFileWriterCallbacksBridge.cpp
@@ -62,7 +62,7 @@ void WorkerFileWriterCallbacksBridge::postWriteToMainThread(long long position,
{
ASSERT(!m_operationInProgress);
m_operationInProgress = true;
- dispatchTaskToMainThread(createCallbackTask(&writeOnMainThread,
+ dispatchTaskToMainThread(createCallbackTask(&writeOnMainThread,
this, position, data));
}
@@ -70,7 +70,7 @@ void WorkerFileWriterCallbacksBridge::postTruncateToMainThread(long long length)
{
ASSERT(!m_operationInProgress);
m_operationInProgress = true;
- dispatchTaskToMainThread(createCallbackTask(&truncateOnMainThread,
+ dispatchTaskToMainThread(createCallbackTask(&truncateOnMainThread,
this, length));
}