| Index: Source/web/InspectorOverlayImpl.h
|
| diff --git a/Source/web/InspectorOverlayImpl.h b/Source/web/InspectorOverlayImpl.h
|
| index 0a439e0eefb9081a81347fe15275cc7ae5cd6cbd..19bbab82f3717552b70b1ce33545401cb3720cc2 100644
|
| --- a/Source/web/InspectorOverlayImpl.h
|
| +++ b/Source/web/InspectorOverlayImpl.h
|
| @@ -67,7 +67,7 @@ class InspectorOverlayImpl final
|
| , public InspectorDOMAgent::Client
|
| , public InspectorPageAgent::Client
|
| , public InspectorProfilerAgent::Client
|
| - , public InspectorOverlayHost::DebuggerListener {
|
| + , public InspectorOverlayHost::Listener {
|
| WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(InspectorOverlayImpl);
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorOverlayImpl);
|
| public:
|
| @@ -92,9 +92,12 @@ private:
|
| class InspectorOverlayChromeClient;
|
| class InspectorPageOverlayDelegate;
|
|
|
| - // InspectorOverlayHost::DebuggerListener implementation.
|
| + // InspectorOverlayHost::Listener implementation.
|
| void overlayResumed() override;
|
| void overlaySteppedOver() override;
|
| + void overlayStartedPropertyChange(const String&) override;
|
| + void overlayPropertyChanged(float) override;
|
| + void overlayEndedPropertyChange() override;
|
|
|
| // InspectorProfilerAgent::Client implementation.
|
| void profilingStarted() override;
|
|
|