⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 187540 in webkit


Ignore:
Timestamp:
Jul 28, 2015, 11:41:02 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Fix typos in ewk_extension.cpp
https://bugs.webkit.org/show_bug.cgi?id=147396

Patch by Jincheol Jo <jincheol.jo@navercorp.com> on 2015-07-28
Reviewed by Gyuyoung Kim.

Fix from toEwkExtendion to toEwkExtension.

  • WebProcess/InjectedBundle/API/efl/ewk_extension.cpp:

(toEwkExtension):
(EwkExtension::didCreatePage):
(EwkExtension::willDestroyPage):
(EwkExtension::didReceiveMessage):
(toEwkExtendion): Deleted.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r187533 r187540  
     12015-07-28  Jincheol Jo  <jincheol.jo@navercorp.com>
     2
     3        [EFL] Fix typos in ewk_extension.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=147396
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Fix from toEwkExtendion to toEwkExtension.
     9
     10        * WebProcess/InjectedBundle/API/efl/ewk_extension.cpp:
     11        (toEwkExtension):
     12        (EwkExtension::didCreatePage):
     13        (EwkExtension::willDestroyPage):
     14        (EwkExtension::didReceiveMessage):
     15        (toEwkExtendion): Deleted.
     16
    1172015-07-28  Alexey Proskuryakov  <ap@apple.com>
    218
  • trunk/Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp

    r181681 r187540  
    4141using namespace WebKit;
    4242
    43 static inline EwkExtension* toEwkExtendion(const void* clientInfo)
     43static inline EwkExtension* toEwkExtension(const void* clientInfo)
    4444{
    4545    return const_cast<EwkExtension*>(static_cast<const EwkExtension*>(clientInfo));
     
    7575void EwkExtension::didCreatePage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo)
    7676{
    77     EwkExtension* self = toEwkExtendion(clientInfo);
     77    EwkExtension* self = toEwkExtension(clientInfo);
    7878    WebPage* page = toImpl(wkPage);
    7979
     
    8989void EwkExtension::willDestroyPage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo)
    9090{
    91     EwkExtension* self = toEwkExtendion(clientInfo);
     91    EwkExtension* self = toEwkExtension(clientInfo);
    9292    WebPage* page = toImpl(wkPage);
    9393
     
    101101void EwkExtension::didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
    102102{
    103     EwkExtension* self = toEwkExtendion(clientInfo);
     103    EwkExtension* self = toEwkExtension(clientInfo);
    104104    CString name = toImpl(messageName)->string().utf8();
    105105    Eina_Value* value = nullptr;
Note: See TracChangeset for help on using the changeset viewer.