Changes between Version 11 and Version 12 of Modules


Ignore:
Timestamp:
Feb 27, 2012 7:09:53 PM (12 years ago)
Author:
abarth@webkit.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Modules

    v11 v12  
    11= The Care and Feeding of WebCore Modules =
     2
     3This document describes how WebCore's module system works and how to use it when building a new feature.
    24
    35== Overview ==
    46
    57As we add more features to WebCore, the project becomes more complex.  Some self-contained features, like IndexedDB and MediaStream, expose DOM interfaces but aren't otherwise involved in the core functionality of the engine, such as layout and rendering.  The module system let us reduce the complexity of the project by loosening the coupling of between these features and the rest of WebCore.
    6 
    7 This document describes how WebCore's module system works and how to leverage it when building a new feature.
    88
    99== Dependency diagram ==