Changeset 162144 in webkit


Ignore:
Timestamp:
Jan 16, 2014 1:23:23 PM (10 years ago)
Author:
BJ Burg
Message:

Web Inspector: CallFrame is missing saveIdentityToCookie, or should be excluded
https://bugs.webkit.org/show_bug.cgi?id=126791

Reviewed by Timothy Hatcher.

  • UserInterface/CallFrame.js: Add a dummy saveIdentityToCookie() implementation.
Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r162136 r162144  
     12014-01-16  Brian Burg  <bburg@apple.com>
     2
     3        Web Inspector: CallFrame is missing saveIdentityToCookie, or should be excluded
     4        https://bugs.webkit.org/show_bug.cgi?id=126791
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/CallFrame.js: Add a dummy saveIdentityToCookie() implementation.
     9
    1102014-01-16  Brian Burg  <bburg@apple.com>
    211
  • trunk/Source/WebInspectorUI/UserInterface/CallFrame.js

    r151453 r162144  
    7575    },
    7676
     77    saveIdentityToCookie: function()
     78    {
     79        // Do nothing. The call frame is torn down when the inspector closes, and
     80        // we shouldn't restore call frame content views across debugger pauses.
     81    },
     82
    7783    collectScopeChainVariableNames: function(callback)
    7884    {
Note: See TracChangeset for help on using the changeset viewer.