Title: [133269] trunk/Source/WebKit2
Revision
133269
Author
commit-qu...@webkit.org
Date
2012-11-02 00:15:37 -0700 (Fri, 02 Nov 2012)

Log Message

[EFL][WK2] Remove redundant internal function
https://bugs.webkit.org/show_bug.cgi?id=100969

Patch by Jinwoo Song <jinwoo7.s...@samsung.com> on 2012-11-02
Reviewed by Gyuyoung Kim.

Remove ewk_view_text_found() in ewk_view.cpp which is not used anymore.
Now, "text,found" signal is emitted by DECLARE_EWK_VIEW_CALLBACK(TextFound, "text,found", unsigned)
in EwkViewCallback.h

* UIProcess/API/efl/ewk_view.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (133268 => 133269)


--- trunk/Source/WebKit2/ChangeLog	2012-11-02 06:35:27 UTC (rev 133268)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-02 07:15:37 UTC (rev 133269)
@@ -1,3 +1,16 @@
+2012-11-02  Jinwoo Song  <jinwoo7.s...@samsung.com>
+
+        [EFL][WK2] Remove redundant internal function
+        https://bugs.webkit.org/show_bug.cgi?id=100969
+
+        Reviewed by Gyuyoung Kim.
+
+        Remove ewk_view_text_found() in ewk_view.cpp which is not used anymore.
+        Now, "text,found" signal is emitted by DECLARE_EWK_VIEW_CALLBACK(TextFound, "text,found", unsigned) 
+        in EwkViewCallback.h
+
+        * UIProcess/API/efl/ewk_view.cpp:
+
 2012-11-01  Anders Carlsson  <ander...@apple.com>
 
         Reformat the annotationStyle initializer to appease update-webkit-localizable-strings.

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp (133268 => 133269)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-02 06:35:27 UTC (rev 133268)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-02 07:15:37 UTC (rev 133269)
@@ -659,17 +659,6 @@
     return impl->title();
 }
 
-/**
- * @internal
- * Reports that the requested text was found.
- *
- * Emits signal: "text,found" with the number of matches.
- */
-void ewk_view_text_found(Evas_Object* ewkView, unsigned int matchCount)
-{
-    evas_object_smart_callback_call(ewkView, "text,found", &matchCount);
-}
-
 double ewk_view_load_progress_get(const Evas_Object* ewkView)
 {
     EWK_VIEW_IMPL_GET_OR_RETURN(ewkView, impl, -1.0);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to