Changes between Version 10 and Version 11 of Modules
- Timestamp:
- Feb 27, 2012, 7:09:13 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Modules
v10 v11 3 3 == Overview == 4 4 5 As we add more features to WebCore, the project becomes more complex. Some features, like IndexedDB and MediaStream, add DOM interfaces but aren't otherwise involved in the core functionality of the engine, such as layout and rendering. WebCore Moduleslet us reduce the complexity of the project by loosening the coupling of between these features and the rest of WebCore.5 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 6 7 7 This document describes how WebCore's module system works and how to leverage it when building a new feature.