Changes between Version 8 and Version 9 of WebKitIDL


Ignore:
Timestamp:
Jan 27, 2012 6:12:20 PM (12 years ago)
Author:
haraken@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v8 v9  
    33The [http://www.w3.org/TR/WebIDL/ Web IDL] is a language that defines how WebCore interfaces are bound to external languages such as JavaScriptCore, V8, ObjC, GObject and CPP. We need to write IDL files (e.g. XMLHttpRequest.idl, Element.idl, etc) to expose WebCore interfaces to those external languages. When WebKit is built, the IDL files are parsed, and the code to "bind" WebCore implementations and JavaScriptCore/V8/ObjC/GObject/CPP interfaces is automatically generated.
    44
    5 This page describes practical information about how the IDL binding works and how we can write IDL files in WebKit. The syntax of IDL files are fairly well documented in the [http://www.w3.org/TR/WebIDL/ Web IDL spec], but (1) it is too formal to read:-) and (2) WebKit uses a bit different syntax due to implementation issues.
     5This page describes practical information about how the IDL binding works and how we can write IDL files in WebKit. The syntax of IDL files is fairly well documented in the [http://www.w3.org/TR/WebIDL/ Web IDL spec], but it is too formal to read:-) and WebKit uses a bit different syntax due to implementation issues.
    66
    77= Basics of the IDL =