| Index: Source/core/dom/StringCallback.cpp
|
| diff --git a/Source/core/dom/StringCallback.cpp b/Source/core/dom/StringCallback.cpp
|
| index 669a442947119c40f65df55bb9fef5a8aabd6e15..aa8544cf6456ab6eedf5b7e0292b1805bd1a8b82 100644
|
| --- a/Source/core/dom/StringCallback.cpp
|
| +++ b/Source/core/dom/StringCallback.cpp
|
| @@ -33,7 +33,6 @@
|
|
|
| #include "core/dom/ExecutionContext.h"
|
| #include "core/dom/ExecutionContextTask.h"
|
| -#include "public/platform/WebTraceLocation.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
| @@ -74,7 +73,7 @@
|
|
|
| void StringCallback::scheduleCallback(StringCallback* callback, ExecutionContext* context, const String& data, const String& instrumentationName)
|
| {
|
| - context->postTask(FROM_HERE, DispatchCallbackTask::create(callback, data, instrumentationName));
|
| + context->postTask(DispatchCallbackTask::create(callback, data, instrumentationName));
|
| }
|
|
|
| } // namespace blink
|
|
|