[Webkit-unassigned] [Bug 69092] Web Inspector: [chromium] expose inspector protocol version to the embedder.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 29 10:03:32 PDT 2011


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





--- Comment #1 from Pavel Feldman <pfeldman at chromium.org>  2011-09-29 10:03:32 PST ---
Please find generated file content below:

======================================
#ifndef InspectorProtocolVersion_h
#define InspectorProtocolVersion_h

#include "PlatformString.h"

namespace WebCore {

String inspectorProtocolVersion()
{
    return "tip-of-tree";
}

bool supportsInspectorProtocolVersion(const String& version)
{
    if (version == "draft-01")
        return true;
    if (version == "tip-of-tree")
        return true;
    return false;
}

}

#endif // !defined(InspectorProtocolVersion_h)
======================================

-- 
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