Index: Source/WebCore/inspector/InspectorInstrumentation.h |
=================================================================== |
--- Source/WebCore/inspector/InspectorInstrumentation.h (revision 96037) |
+++ Source/WebCore/inspector/InspectorInstrumentation.h (working copy) |
@@ -138,7 +138,6 @@ |
static void loadEventFired(Frame*, const KURL&); |
static void frameDetachedFromParent(Frame*); |
static void didCommitLoad(Frame*, DocumentLoader*); |
- static void frameDestroyed(Frame*); |
static void loaderDetachedFromFrame(Frame*, DocumentLoader*); |
static InspectorInstrumentationCookie willWriteHTML(Document*, unsigned int length, unsigned int startLine); |
@@ -267,7 +266,6 @@ |
static void loadEventFiredImpl(InstrumentingAgents*, Frame*, const KURL&); |
static void frameDetachedFromParentImpl(InstrumentingAgents*, Frame*); |
static void didCommitLoadImpl(InstrumentingAgents*, Page*, DocumentLoader*); |
- static void frameDestroyedImpl(InstrumentingAgents*, Frame*); |
static void loaderDetachedFromFrameImpl(InstrumentingAgents*, DocumentLoader*); |
static InspectorInstrumentationCookie willWriteHTMLImpl(InstrumentingAgents*, unsigned int length, unsigned int startLine); |
@@ -867,14 +865,6 @@ |
#endif |
} |
-inline void InspectorInstrumentation::frameDestroyed(Frame* frame) |
-{ |
-#if ENABLE(INSPECTOR) |
- if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame)) |
- frameDestroyedImpl(instrumentingAgents, frame); |
-#endif |
-} |
- |
inline void InspectorInstrumentation::loaderDetachedFromFrame(Frame* frame, DocumentLoader* loader) |
{ |
#if ENABLE(INSPECTOR) |