Changeset 152749 in webkit


Ignore:
Timestamp:
Jul 16, 2013 5:32:14 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: InspectorFrontendHost is undefined
https://bugs.webkit.org/show_bug.cgi?id=118715

Patch by Seokju Kwon <Seokju Kwon> on 2013-07-16
Reviewed by Timothy Hatcher.

Add InspectorFrontendHostStub.js to New Inspector because of the InspectorFrontendHost initialization.

  • UserInterface/InspectorFrontendHostStub.js: Added.

(.WebInspector.InspectorFrontendHostStub):
(.WebInspector.InspectorFrontendHostStub.prototype.platform):
(.WebInspector.InspectorFrontendHostStub.prototype.port):
(.WebInspector.InspectorFrontendHostStub.prototype.bringToFront):
(.WebInspector.InspectorFrontendHostStub.prototype.closeWindow):
(.WebInspector.InspectorFrontendHostStub.prototype.requestSetDockSide):
(.WebInspector.InspectorFrontendHostStub.prototype.setAttachedWindowHeight):
(.WebInspector.InspectorFrontendHostStub.prototype.setAttachedWindowWidth):
(.WebInspector.InspectorFrontendHostStub.prototype.setToolbarHeight):
(.WebInspector.InspectorFrontendHostStub.prototype.moveWindowBy):
(.WebInspector.InspectorFrontendHostStub.prototype.loaded):
(.WebInspector.InspectorFrontendHostStub.prototype.localizedStringsURL):
(.WebInspector.InspectorFrontendHostStub.prototype.inspectedURLChanged):
(.WebInspector.InspectorFrontendHostStub.prototype.copyText):
(.WebInspector.InspectorFrontendHostStub.prototype.openInNewTab):
(.WebInspector.InspectorFrontendHostStub.prototype.canSave):
(.WebInspector.InspectorFrontendHostStub.prototype.save):
(.WebInspector.InspectorFrontendHostStub.prototype.append):
(.WebInspector.InspectorFrontendHostStub.prototype.close.cleanup):
(.WebInspector.InspectorFrontendHostStub.prototype.close):
(.WebInspector.InspectorFrontendHostStub.prototype.sendMessageToBackend):
(.WebInspector.InspectorFrontendHostStub.prototype.loadResourceSynchronously):

  • UserInterface/Main.html:
Location:
trunk/Source/WebInspectorUI
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r152684 r152749  
     12013-07-16  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        Web Inspector: InspectorFrontendHost is undefined
     4        https://bugs.webkit.org/show_bug.cgi?id=118715
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        Add InspectorFrontendHostStub.js to New Inspector because of the InspectorFrontendHost initialization.
     9
     10        * UserInterface/InspectorFrontendHostStub.js: Added.
     11        (.WebInspector.InspectorFrontendHostStub):
     12        (.WebInspector.InspectorFrontendHostStub.prototype.platform):
     13        (.WebInspector.InspectorFrontendHostStub.prototype.port):
     14        (.WebInspector.InspectorFrontendHostStub.prototype.bringToFront):
     15        (.WebInspector.InspectorFrontendHostStub.prototype.closeWindow):
     16        (.WebInspector.InspectorFrontendHostStub.prototype.requestSetDockSide):
     17        (.WebInspector.InspectorFrontendHostStub.prototype.setAttachedWindowHeight):
     18        (.WebInspector.InspectorFrontendHostStub.prototype.setAttachedWindowWidth):
     19        (.WebInspector.InspectorFrontendHostStub.prototype.setToolbarHeight):
     20        (.WebInspector.InspectorFrontendHostStub.prototype.moveWindowBy):
     21        (.WebInspector.InspectorFrontendHostStub.prototype.loaded):
     22        (.WebInspector.InspectorFrontendHostStub.prototype.localizedStringsURL):
     23        (.WebInspector.InspectorFrontendHostStub.prototype.inspectedURLChanged):
     24        (.WebInspector.InspectorFrontendHostStub.prototype.copyText):
     25        (.WebInspector.InspectorFrontendHostStub.prototype.openInNewTab):
     26        (.WebInspector.InspectorFrontendHostStub.prototype.canSave):
     27        (.WebInspector.InspectorFrontendHostStub.prototype.save):
     28        (.WebInspector.InspectorFrontendHostStub.prototype.append):
     29        (.WebInspector.InspectorFrontendHostStub.prototype.close.cleanup):
     30        (.WebInspector.InspectorFrontendHostStub.prototype.close):
     31        (.WebInspector.InspectorFrontendHostStub.prototype.sendMessageToBackend):
     32        (.WebInspector.InspectorFrontendHostStub.prototype.loadResourceSynchronously):
     33        * UserInterface/Main.html:
     34
    1352013-07-15  Seokju Kwon  <seokju.kwon@gmail.com>
    236
  • trunk/Source/WebInspectorUI/UserInterface/Main.html

    r152092 r152749  
    143143    <script src="Setting.js"></script>
    144144    <script src="InspectorBackend.js"></script>
     145    <script src="InspectorFrontendHostStub.js"></script>
    145146    <script src="LoadInspectorBackendCommands.js"></script>
    146147    <script src="InspectorFrontendAPI.js"></script>
Note: See TracChangeset for help on using the changeset viewer.