Title: [175099] trunk/Source/WebKit2
Revision
175099
Author
[email protected]
Date
2014-10-23 01:21:40 -0700 (Thu, 23 Oct 2014)

Log Message

[EFL] Set proper default value for WebPageAccessibilityObject
https://bugs.webkit.org/show_bug.cgi?id=137951

Reviewed by Csaba Osztrogonác.

Initial value for WebPageAccessibilityObject should be nullptr.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (175098 => 175099)


--- trunk/Source/WebKit2/ChangeLog	2014-10-23 08:02:35 UTC (rev 175098)
+++ trunk/Source/WebKit2/ChangeLog	2014-10-23 08:21:40 UTC (rev 175099)
@@ -1,5 +1,17 @@
 2014-10-23  Krzysztof Czech  <[email protected]>
 
+        [EFL] Set proper default value for WebPageAccessibilityObject
+        https://bugs.webkit.org/show_bug.cgi?id=137951
+
+        Reviewed by Csaba Osztrogonác.
+
+        Initial value for WebPageAccessibilityObject should be nullptr.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::WebPage):
+
+2014-10-23  Krzysztof Czech  <[email protected]>
+
         [EFL] Introduce EFL Accessibility in WebKit
         https://bugs.webkit.org/show_bug.cgi?id=137819
 

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (175098 => 175099)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2014-10-23 08:02:35 UTC (rev 175098)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2014-10-23 08:21:40 UTC (rev 175099)
@@ -271,8 +271,8 @@
     , m_pdfPluginEnabled(false)
     , m_hasCachedWindowFrame(false)
     , m_viewGestureGeometryCollector(*this)
-#elif PLATFORM(GTK) && HAVE(ACCESSIBILITY)
-    , m_accessibilityObject(0)
+#elif HAVE(ACCESSIBILITY) && (PLATFORM(GTK) || PLATFORM(EFL))
+    , m_accessibilityObject(nullptr)
 #endif
     , m_setCanStartMediaTimer(RunLoop::main(), this, &WebPage::setCanStartMediaTimerFired)
     , m_formClient(std::make_unique<API::InjectedBundle::FormClient>())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to