| Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| index 1e5adcc8c1ccd5ec3a86ff330350f64484009c13..6fa75cf9bc647ce1230b616b021a0adf8eee7440 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| @@ -270,7 +270,7 @@ LocalFrame* LocalFrame::create(LocalFrameClient* client,
|
| : InterfaceProvider::getEmptyInterfaceProvider(),
|
| interfaceRegistry ? interfaceRegistry
|
| : InterfaceRegistry::getEmptyInterfaceRegistry());
|
| - InspectorInstrumentation::frameAttachedToParent(frame);
|
| + probe::frameAttachedToParent(frame);
|
| return frame;
|
| }
|
|
|
| @@ -453,7 +453,7 @@ void LocalFrame::detach(FrameDetachType type) {
|
| if (page() && page()->scrollingCoordinator() && m_view)
|
| page()->scrollingCoordinator()->willDestroyScrollableArea(m_view.get());
|
|
|
| - InspectorInstrumentation::frameDetachedFromParent(this);
|
| + probe::frameDetachedFromParent(this);
|
| Frame::detach(type);
|
|
|
| m_supplements.clear();
|
|
|