Changeset 187540 in webkit
- Timestamp:
- Jul 28, 2015, 11:41:02 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/InjectedBundle/API/efl/ewk_extension.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r187533 r187540 1 2015-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 1 17 2015-07-28 Alexey Proskuryakov <ap@apple.com> 2 18 -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/efl/ewk_extension.cpp
r181681 r187540 41 41 using namespace WebKit; 42 42 43 static inline EwkExtension* toEwkExten dion(const void* clientInfo)43 static inline EwkExtension* toEwkExtension(const void* clientInfo) 44 44 { 45 45 return const_cast<EwkExtension*>(static_cast<const EwkExtension*>(clientInfo)); … … 75 75 void EwkExtension::didCreatePage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo) 76 76 { 77 EwkExtension* self = toEwkExten dion(clientInfo);77 EwkExtension* self = toEwkExtension(clientInfo); 78 78 WebPage* page = toImpl(wkPage); 79 79 … … 89 89 void EwkExtension::willDestroyPage(WKBundleRef, WKBundlePageRef wkPage, const void* clientInfo) 90 90 { 91 EwkExtension* self = toEwkExten dion(clientInfo);91 EwkExtension* self = toEwkExtension(clientInfo); 92 92 WebPage* page = toImpl(wkPage); 93 93 … … 101 101 void EwkExtension::didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo) 102 102 { 103 EwkExtension* self = toEwkExten dion(clientInfo);103 EwkExtension* self = toEwkExtension(clientInfo); 104 104 CString name = toImpl(messageName)->string().utf8(); 105 105 Eina_Value* value = nullptr;
Note:
See TracChangeset
for help on using the changeset viewer.