[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

cfleizach at apple.com cfleizach at apple.com
Fri Jan 21 14:56:23 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 6bd30ef6f1bf5a8b15e6086e4e5a687898a35189
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 5 01:36:57 2011 +0000

    Unreviewed. Build fix.
    
    WK2: Support Accessibility
    https://bugs.webkit.org/show_bug.cgi?id=51859
    
    WebCore:
    
    * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
    (fallbackObject):
    
    WebKit2:
    
    * WebProcess/WebPage/mac/AccessibilityWebPageObject.mm:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75034 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0cda95c..127ba15 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-04  Chris Fleizach  <cfleizach at apple.com>
+
+        Unreviewed. Build fix.
+
+        WK2: Support Accessibility
+        https://bugs.webkit.org/show_bug.cgi?id=51859
+
+        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
+        (fallbackObject):
+
 2011-01-04  Cosmin Truta  <ctruta at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp b/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
index 714ae54..5beffd2 100644
--- a/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
+++ b/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
@@ -76,7 +76,8 @@ using namespace WebCore;
 
 static AccessibilityObject* fallbackObject()
 {
-    static AXObjectCache* fallbackCache = new AXObjectCache;
+    // FIXME: An AXObjectCache with a Document is meaningless.
+    static AXObjectCache* fallbackCache = new AXObjectCache(0);
     static AccessibilityObject* object = 0;
     if (!object) {
         // FIXME: using fallbackCache->getOrCreate(ListBoxOptionRole) is a hack
diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 5050b36..597c555 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -6,6 +6,15 @@
         https://bugs.webkit.org/show_bug.cgi?id=51859
 
         * WebProcess/WebPage/mac/AccessibilityWebPageObject.mm:
+
+2011-01-04  Chris Fleizach  <cfleizach at apple.com>
+
+        Unreviewed. Build fix.
+
+        WK2: Support Accessibility
+        https://bugs.webkit.org/show_bug.cgi?id=51859
+
+        * WebProcess/WebPage/mac/AccessibilityWebPageObject.mm:
         (-[AccessibilityWebPageObject accessibilityAttributeValue:]):
 
 2011-01-04  Chris Fleizach  <cfleizach at apple.com>
diff --git a/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.mm b/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.mm
index 610e46d..fa4aa1a 100644
--- a/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.mm
+++ b/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.mm
@@ -27,7 +27,6 @@
 
 #import "WebFrame.h"
 #import "WebPage.h"
-#import <AppKit/NSAccessibilityRemoteUIElement.h>
 #import <WebCore/AXObjectCache.h>
 #import <WebCore/Frame.h>
 #import <WebCore/FrameView.h>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list