Version 7 (modified by 13 years ago) ( diff ) | ,
---|
The Care and Feeding of WebCore Modules
Overview
As we add more features to WebCore, the project becomes more complex. Some features, like IndexedDB and MediaStream, can add DOM interfaces but aren't otherwise involved in the core functionality of the engine, such as layout and rendering. WebCore Modules let us reduce the complexity of the project by loosening the coupling of between these features and the rest of WebCore. This document describes how WebCore's module system works and how to leverage it when building a new feature.
Dependencies
Associating JavaScript APIs with "core" objects
Associating state with "core" objects
Observing the lifecycle of "core" objects
- http://trac.webkit.org/browser/trunk/Source/WebCore/page/FrameDestructionObserver.h
- http://trac.webkit.org/browser/trunk/Source/WebCore/dom/ContextDestructionObserver.h
- http://trac.webkit.org/browser/trunk/Source/WebCore/dom/ActiveDOMObject.h
Adding new events and exceptions
Note:
See TracWiki
for help on using the wiki.