Title: [187540] trunk/Source/WebKit2
Revision
187540
Author
commit-qu...@webkit.org
Date
2015-07-28 23:41:02 -0700 (Tue, 28 Jul 2015)

Log Message

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

Patch by Jincheol Jo <jincheol...@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.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (187539 => 187540)


--- trunk/Source/WebKit2/ChangeLog	2015-07-29 05:48:29 UTC (rev 187539)
+++ trunk/Source/WebKit2/ChangeLog	2015-07-29 06:41:02 UTC (rev 187540)
@@ -1,3 +1,19 @@
+2015-07-28  Jincheol Jo  <jincheol...@navercorp.com>
+
+        [EFL] Fix typos in ewk_extension.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=147396
+
+        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.
+
 2015-07-28  Alexey Proskuryakov  <a...@apple.com>
 
         Clean up usesAsyncCallbacks handling in ResourceHandle

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp (187539 => 187540)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp	2015-07-29 05:48:29 UTC (rev 187539)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp	2015-07-29 06:41:02 UTC (rev 187540)
@@ -40,7 +40,7 @@
 
 using namespace WebKit;
 
-static inline EwkExtension* toEwkExtendion(const void* clientInfo)
+static inline EwkExtension* toEwkExtension(const void* clientInfo)
 {
     return const_cast<EwkExtension*>(static_cast<const EwkExtension*>(clientInfo));
 }
@@ -74,7 +74,7 @@
 
 void EwkExtension::didCreatePage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo)
 {
-    EwkExtension* self = toEwkExtendion(clientInfo);
+    EwkExtension* self = toEwkExtension(clientInfo);
     WebPage* page = toImpl(wkPage);
 
     auto ewkPage = std::make_unique<EwkPage>(page);
@@ -88,7 +88,7 @@
 
 void EwkExtension::willDestroyPage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo)
 {
-    EwkExtension* self = toEwkExtendion(clientInfo);
+    EwkExtension* self = toEwkExtension(clientInfo);
     WebPage* page = toImpl(wkPage);
 
     for (auto& it : self->m_clients) {
@@ -100,7 +100,7 @@
 
 void EwkExtension::didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
 {
-    EwkExtension* self = toEwkExtendion(clientInfo);
+    EwkExtension* self = toEwkExtension(clientInfo);
     CString name = toImpl(messageName)->string().utf8();
     Eina_Value* value = nullptr;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to