Skip to content

Commit d35ecf4

Browse files
[EFL] Fix typos in ewk_extension.cpp
https://bugs.webkit.org/show_bug.cgi?id=147396 Patch by Jincheol Jo <[email protected]> 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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@187540 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 2ce9c87 commit d35ecf4

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

Source/WebKit2/ChangeLog

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2015-07-28 Jincheol Jo <[email protected]>
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+
117
2015-07-28 Alexey Proskuryakov <[email protected]>
218

319
Clean up usesAsyncCallbacks handling in ResourceHandle

Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
using namespace WebKit;
4242

43-
static inline EwkExtension* toEwkExtendion(const void* clientInfo)
43+
static inline EwkExtension* toEwkExtension(const void* clientInfo)
4444
{
4545
return const_cast<EwkExtension*>(static_cast<const EwkExtension*>(clientInfo));
4646
}
@@ -74,7 +74,7 @@ void EwkExtension::remove(Ewk_Extension_Client* client)
7474

7575
void 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

8080
auto ewkPage = std::make_unique<EwkPage>(page);
@@ -88,7 +88,7 @@ void EwkExtension::didCreatePage(WKBundleRef, WKBundlePageRef wkPage, const void
8888

8989
void 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

9494
for (auto& it : self->m_clients) {
@@ -100,7 +100,7 @@ void EwkExtension::willDestroyPage(WKBundleRef, WKBundlePageRef wkPage, const vo
100100

101101
void 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;
106106

0 commit comments

Comments
 (0)