| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index a08db328176a22470e25704cd1c56df2816fda84..44789ccb7babdbe68f6d666bdc4147dd66decc37 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -5216,9 +5216,9 @@ void Document::addConsoleMessage(ConsoleMessage* consoleMessage)
|
| }
|
|
|
| // FIXME(crbug.com/305497): This should be removed after ExecutionContext-LocalDOMWindow migration.
|
| -void Document::postTask(const WebTraceLocation& location, std::unique_ptr<ExecutionContextTask> task)
|
| +void Document::postTask(const WebTraceLocation& location, std::unique_ptr<ExecutionContextTask> task, const String& taskNameForInstrumentation)
|
| {
|
| - m_taskRunner->postTask(location, std::move(task));
|
| + m_taskRunner->postTask(location, std::move(task), taskNameForInstrumentation);
|
| }
|
|
|
| void Document::postInspectorTask(const WebTraceLocation& location, std::unique_ptr<ExecutionContextTask> task)
|
|
|