Title: [134933] trunk/Source/WebKit2
Revision
134933
Author
commit-qu...@webkit.org
Date
2012-11-16 04:53:42 -0800 (Fri, 16 Nov 2012)

Log Message

[EFL][WK2] Unset the tooltip when the web process has crashed
https://bugs.webkit.org/show_bug.cgi?id=102232

Patch by Sudarsana Nagineni <sudarsana.nagin...@intel.com> on 2012-11-16
Reviewed by Gyuyoung Kim.

Emit 'tooltip,text,unset' signal to unset the tooltip
when the web process has crashed.

* UIProcess/efl/PageClientBase.cpp:
(WebKit::PageClientBase::processDidCrash):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (134932 => 134933)


--- trunk/Source/WebKit2/ChangeLog	2012-11-16 12:37:22 UTC (rev 134932)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-16 12:53:42 UTC (rev 134933)
@@ -1,3 +1,16 @@
+2012-11-16  Sudarsana Nagineni  <sudarsana.nagin...@intel.com>
+
+        [EFL][WK2] Unset the tooltip when the web process has crashed
+        https://bugs.webkit.org/show_bug.cgi?id=102232
+
+        Reviewed by Gyuyoung Kim.
+
+        Emit 'tooltip,text,unset' signal to unset the tooltip
+        when the web process has crashed.
+
+        * UIProcess/efl/PageClientBase.cpp:
+        (WebKit::PageClientBase::processDidCrash):
+
 2012-11-16  Helder Correia  <helder.corr...@nokia.com>
 
         [CoordGfx] Follow coding style on explicit constructors

Modified: trunk/Source/WebKit2/UIProcess/efl/PageClientBase.cpp (134932 => 134933)


--- trunk/Source/WebKit2/UIProcess/efl/PageClientBase.cpp	2012-11-16 12:37:22 UTC (rev 134932)
+++ trunk/Source/WebKit2/UIProcess/efl/PageClientBase.cpp	2012-11-16 12:53:42 UTC (rev 134933)
@@ -128,6 +128,8 @@
         m_viewImpl->smartCallback<LoadProgress>().call(&loadProgress);
     }
 
+    m_viewImpl->smartCallback<TooltipTextUnset>().call();
+
     bool handled = false;
     m_viewImpl->smartCallback<WebProcessCrashed>().call(&handled);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to