Title: [128636] trunk/Source/WebKit2
- Revision
- 128636
- Author
- [email protected]
- Date
- 2012-09-14 11:53:01 -0700 (Fri, 14 Sep 2012)
Log Message
[EFL] RefPtr<Evas_Object> unit tests fails
https://bugs.webkit.org/show_bug.cgi?id=96809
Patch by Sudarsana Nagineni <[email protected]> on 2012-09-14
Reviewed by Kenneth Rohde Christiansen.
Added missing return.
* UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h:
(EWK2UnitTest::EWK2UnitTestBase::canvas):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (128635 => 128636)
--- trunk/Source/WebKit2/ChangeLog 2012-09-14 18:52:18 UTC (rev 128635)
+++ trunk/Source/WebKit2/ChangeLog 2012-09-14 18:53:01 UTC (rev 128636)
@@ -1,3 +1,15 @@
+2012-09-14 Sudarsana Nagineni <[email protected]>
+
+ [EFL] RefPtr<Evas_Object> unit tests fails
+ https://bugs.webkit.org/show_bug.cgi?id=96809
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ Added missing return.
+
+ * UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h:
+ (EWK2UnitTest::EWK2UnitTestBase::canvas):
+
2012-09-14 Christophe Dumez <[email protected]>
WebKitTestRunner needs layoutTestController.dumpDatabaseCallbacks
Modified: trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h (128635 => 128636)
--- trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h 2012-09-14 18:52:18 UTC (rev 128635)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h 2012-09-14 18:53:01 UTC (rev 128636)
@@ -30,7 +30,7 @@
class EWK2UnitTestBase : public ::testing::Test {
public:
Ecore_Evas* backingStore() { return m_ecoreEvas; }
- Evas* canvas() { ecore_evas_get(m_ecoreEvas); }
+ Evas* canvas() { return ecore_evas_get(m_ecoreEvas); }
Evas_Object* webView() { return m_webView; }
Ewk_View_Smart_Class* ewkViewClass() { return &m_ewkViewClass; }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes