Changes between Version 11 and Version 12 of Modules
- Timestamp:
- Feb 27, 2012 7:09:53 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Modules
v11 v12 1 1 = The Care and Feeding of WebCore Modules = 2 3 This document describes how WebCore's module system works and how to use it when building a new feature. 2 4 3 5 == Overview == 4 6 5 7 As 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.8 8 9 9 == Dependency diagram ==