| Index: third_party/WebKit/Source/core/loader/ImageLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/ImageLoader.cpp b/third_party/WebKit/Source/core/loader/ImageLoader.cpp
|
| index 68bec714e69a5c96f86888f2a5c4933e272828c4..e618c96e42f89bfb969d01e2ac426d2e613210fb 100644
|
| --- a/third_party/WebKit/Source/core/loader/ImageLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/ImageLoader.cpp
|
| @@ -103,7 +103,7 @@ class ImageLoader::Task {
|
| m_weakFactory(this),
|
| m_referrerPolicy(referrerPolicy) {
|
| ExecutionContext& context = m_loader->element()->document();
|
| - InspectorInstrumentation::asyncTaskScheduled(&context, "Image", this);
|
| + probe::asyncTaskScheduled(&context, "Image", this);
|
| v8::Isolate* isolate = V8PerIsolateData::mainThreadIsolate();
|
| v8::HandleScope scope(isolate);
|
| // If we're invoked from C++ without a V8 context on the stack, we should
|
| @@ -123,7 +123,7 @@ class ImageLoader::Task {
|
| if (!m_loader)
|
| return;
|
| ExecutionContext& context = m_loader->element()->document();
|
| - InspectorInstrumentation::AsyncTask asyncTask(&context, this);
|
| + probe::AsyncTask asyncTask(&context, this);
|
| if (m_scriptState->contextIsValid()) {
|
| ScriptState::Scope scope(m_scriptState.get());
|
| m_loader->doUpdateFromElement(m_shouldBypassMainWorldCSP,
|
|
|