Changeset 106921 in webkit


Ignore:
Timestamp:
Feb 7, 2012 3:45:29 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Add ModuleEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=63608

Patch by YoungTaeck Song <youngtaeck.song@samsung.com> on 2012-02-07
Reviewed by Andreas Kling.

Add first version of ModuleEfl.cpp including load(), unload() and platformFunctionPointer().

  • Platform/Module.h:
  • Platform/efl/ModuleEfl.cpp: Added.

(WebKit::Module::load):
(WebKit::Module::unload):
(WebKit::Module::platformFunctionPointer):

Location:
trunk/Source/WebKit2
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r106920 r106921  
     12012-02-07  YoungTaeck Song  <youngtaeck.song@samsung.com>
     2
     3        [EFL][WK2] Add ModuleEfl.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=63608
     5
     6        Reviewed by Andreas Kling.
     7
     8        Add first version of ModuleEfl.cpp including load(), unload() and platformFunctionPointer().
     9
     10        * Platform/Module.h:
     11        * Platform/efl/ModuleEfl.cpp: Added.
     12        (WebKit::Module::load):
     13        (WebKit::Module::unload):
     14        (WebKit::Module::platformFunctionPointer):
     15
    1162012-02-07  Michael Brüning  <michael.bruning@nokia.com>
    217
  • trunk/Source/WebKit2/Platform/Module.h

    r95901 r106921  
    4242#endif
    4343
     44#if PLATFORM(EFL)
     45#include <Eina.h>
     46#endif
     47
    4448namespace WebKit {
    4549
     
    8084#elif PLATFORM(GTK)
    8185    GModule* m_handle;
     86#elif PLATFORM(EFL)
     87    OwnPtr<Eina_Module> m_module;
    8288#endif
    8389};
Note: See TracChangeset for help on using the changeset viewer.