Bug 58472 - Add EventHandlerClient
Summary: Add EventHandlerClient
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC OS X 10.5
: P2 Normal
Assignee: Ryosuke Niwa
URL:
Keywords:
Depends on:
Blocks: 56410
  Show dependency treegraph
 
Reported: 2011-04-13 12:26 PDT by Ryosuke Niwa
Modified: 2011-04-26 21:59 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ryosuke Niwa 2011-04-13 12:26:28 PDT
Right now, EventHandler is implemented partially in WebCore/page/EventHandler.cpp and the remaining parts are implemented in each WebKit port. This completely violates WebCore/WebKit layer separation and hinders the encapsulation mechanism of EventHandler.

We should add EventHandlerClient and move all the stuff implemented in each port to this class instead.
Comment 1 Ryosuke Niwa 2011-04-26 21:59:26 PDT
It turned out that this wasn't a good approach.