Changeset 52996 in webkit


Ignore:
Timestamp:
Jan 8, 2010 10:54:42 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-01-08 Matt Perry <mpcomplete@chromium.org>

Reviewed by Adam Barth.

Fix a regression that removed a call to
FrameLoaderClient::didDestroyScriptContextForFrame.
https://bugs.webkit.org/show_bug.cgi?id=33347

  • bindings/v8/V8DOMWindowShell.cpp: (WebCore::V8DOMWindowShell::disposeContextHandles):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52995 r52996  
     12010-01-08  Matt Perry  <mpcomplete@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix a regression that removed a call to
     6        FrameLoaderClient::didDestroyScriptContextForFrame.
     7        https://bugs.webkit.org/show_bug.cgi?id=33347
     8
     9        * bindings/v8/V8DOMWindowShell.cpp:
     10        (WebCore::V8DOMWindowShell::disposeContextHandles):
     11
    1122010-01-08  Brent Fulgham  <bfulgham@webkit.org>
    213
  • trunk/WebCore/bindings/v8/V8DOMWindowShell.cpp

    r52937 r52996  
    145145{
    146146    if (!m_context.IsEmpty()) {
     147        m_frame->loader()->client()->didDestroyScriptContextForFrame();
    147148        m_context.Dispose();
    148149        m_context.Clear();
Note: See TracChangeset for help on using the changeset viewer.