Changeset 161632 in webkit


Ignore:
Timestamp:
Jan 10, 2014 6:30:16 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Add missing function stub in InspectorFrontendHostStub.js
https://bugs.webkit.org/show_bug.cgi?id=126745

Patch by Peter Molnar <pmolnar.u-szeged@partner.samsung.com> on 2014-01-10
Reviewed by Timothy Hatcher.

  • UserInterface/InspectorFrontendHostStub.js:

(.WebInspector.InspectorFrontendHostStub.prototype.debuggableType):
The function debuggableType() was added to InspectorFrontendHost.idl and InspectorFrontendHost.cpp
in r160887, but not to InspectorFrontendHostStub.js.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r161556 r161632  
     12014-01-10  Peter Molnar  <pmolnar.u-szeged@partner.samsung.com>
     2
     3        Add missing function stub in InspectorFrontendHostStub.js
     4        https://bugs.webkit.org/show_bug.cgi?id=126745
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/InspectorFrontendHostStub.js:
     9        (.WebInspector.InspectorFrontendHostStub.prototype.debuggableType):
     10        The function debuggableType() was added to InspectorFrontendHost.idl and InspectorFrontendHost.cpp
     11        in r160887, but not to InspectorFrontendHostStub.js.
     12
    1132014-01-09  Seokju Kwon  <seokju@webkit.org>
    214
  • trunk/Source/WebInspectorUI/UserInterface/InspectorFrontendHostStub.js

    r160066 r161632  
    9595        },
    9696
     97        debuggableType: function()
     98        {
     99            return "web";
     100        },
     101
    97102        inspectedURLChanged: function(title)
    98103        {
Note: See TracChangeset for help on using the changeset viewer.