[Webkit-unassigned] [Bug 54135] New: Web Inspector: define interface per domain in Inspector.idl.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 9 12:32:25 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=54135

           Summary: Web Inspector: define interface per domain in
                    Inspector.idl.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: pfeldman at chromium.org
                CC: timothy at apple.com, rik at webkit.org, keishi at webkit.org,
                    pmuellr at yahoo.com, joepeck at webkit.org,
                    pfeldman at chromium.org, yurys at chromium.org,
                    bweinstein at apple.com, apavlov at chromium.org,
                    loislo at chromium.org


Inspector.idl should look like:

    interface [Conditional=INSPECTOR] DOM {
        void start();
        void stop();
        void getChildNodes(in long nodeId);
        void pushNodeToFrontend(in Object objectId, out Value result);
        ...
        [notify] void childNodeInserted(out long parentId, out long prevId, out Object node);
        [notify] void childNodeRemoved(out long parentId, out long id);
    };

    interface [Conditional=INSPECTOR] CSS {
        void setPropertyText(in Object styleId, in long propertyIndex, in String text, in boolean overwrite, out Value style);
        ...
        void querySelectorAll(in long documentId, in String selector, out Array result);
    };

    interface [Conditional=INSPECTOR] Timeline {
        void start();
        void stop();
        [notify] void timelineProfilerWasStarted();
        ...
        [notify] void addRecordToTimeline(out Object record);
    };

I.e. interface name defines domain, functions within domain have unique names.

Patch to follow.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list