Bug 41885 - Add a Plugin abstract base class and a DummyPlugin that implements it
Summary: Add a Plugin abstract base class and a DummyPlugin that implements it
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other OS X 10.5
: P2 Normal
Assignee: Anders Carlsson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-08 11:50 PDT by Anders Carlsson
Modified: 2010-07-14 11:29 PDT (History)
0 users

See Also:


Attachments
Patch (19.86 KB, patch)
2010-07-08 11:52 PDT, Anders Carlsson
sam: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Anders Carlsson 2010-07-08 11:50:44 PDT
Add a Plugin abstract base class and a DummyPlugin that implements it
Comment 1 Anders Carlsson 2010-07-08 11:52:40 PDT
Created attachment 60920 [details]
Patch
Comment 2 Sam Weinig 2010-07-08 11:55:35 PDT
Comment on attachment 60920 [details]
Patch

> +    virtual void initialize(const WebCore::String& mimeType, const WebCore::KURL&, bool loadManually);
> +    virtual void destroy();
> +    virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect);
> +    virtual void geometryDidChange(const WebCore::IntRect& frameRect);
> +    
> +};
Extra newline'

> +};

Extra semicolon.

r=me.
Comment 3 Anders Carlsson 2010-07-14 11:29:13 PDT
Committed r62813: <http://trac.webkit.org/changeset/62813>