Title: [208439] trunk/Tools
Revision
208439
Author
gyuyoung....@webkit.org
Date
2016-11-09 10:23:27 -0800 (Wed, 09 Nov 2016)

Log Message

[EFL] Remove unused function in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=164398

Reviewed by Darin Adler.

* MiniBrowser/efl/main.c:
(window_find_with_elm_window): Deleted because it is not used anywhere.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (208438 => 208439)


--- trunk/Tools/ChangeLog	2016-11-09 18:07:07 UTC (rev 208438)
+++ trunk/Tools/ChangeLog	2016-11-09 18:23:27 UTC (rev 208439)
@@ -1,3 +1,13 @@
+2016-11-09  Gyuyoung Kim  <gyuyoung....@webkit.org>
+
+        [EFL] Remove unused function in MiniBrowser
+        https://bugs.webkit.org/show_bug.cgi?id=164398
+
+        Reviewed by Darin Adler.
+
+        * MiniBrowser/efl/main.c:
+        (window_find_with_elm_window): Deleted because it is not used anywhere.
+
 2016-11-09  Chris Dumez  <cdu...@apple.com>
 
         [WK2][NETWORK_SESSION] Add support for downloading file backed blobs

Modified: trunk/Tools/MiniBrowser/efl/main.c (208438 => 208439)


--- trunk/Tools/MiniBrowser/efl/main.c	2016-11-09 18:07:07 UTC (rev 208438)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-11-09 18:23:27 UTC (rev 208439)
@@ -212,22 +212,6 @@
 static Browser_Window *window_create(Ewk_View_Configuration* configuration, int width, int height);
 static Ewk_View_Configuration* configuration();
 
-static Browser_Window *window_find_with_elm_window(Evas_Object *elm_window)
-{
-   Eina_List *l;
-   void *data;
-
-   if (!elm_window)
-     return NULL;
-
-   EINA_LIST_FOREACH(windows, l, data) {
-     Browser_Window *window = (Browser_Window *)data;
-     if (window->elm_window == elm_window)
-       return window;
-   }
-   return NULL;
-}
-
 static Browser_Window *window_find_with_ewk_view(Evas_Object *ewk_view)
 {
    Eina_List *l;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to