[webkit-reviews] review requested: [Bug 25898] [Gtk] object:text-changed events should be emitted for entries and password text : [Attachment 68263] Single patch for fixing this bug

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Sep 21 11:05:56 PDT 2010


Mario Sanchez Prada <msanchez at igalia.com> has asked  for review:
Bug 25898: [Gtk] object:text-changed events should be emitted for entries and
password text
https://bugs.webkit.org/show_bug.cgi?id=25898

Attachment 68263: Single patch for fixing this bug
https://bugs.webkit.org/attachment.cgi?id=68263&action=review

------- Additional Comments from Mario Sanchez Prada <msanchez at igalia.com>
(In reply to comment #85)
> (From update of attachment 68201 [details])
> Rejecting patch 68201 from commit-queue.
> 
[...]
> 
> Full output: http://queues.webkit.org/results/4097013

I'm definitely doomed with this patch...

Looks the error is this: 

In file included from
/Users/abarth/git/webkit-queue/WebKit/mac/WebView/WebFrame.mm:56:
/Users/abarth/git/webkit-queue/WebKitBuild/Debug/WebCore.framework/PrivateHeade
rs/AXObjectCache.h:29:39: error: AccessibilityRenderObject.h: No such file or
directory
In file included from
/Users/abarth/git/webkit-queue/WebKit/mac/WebView/WebFrame.mm:56:
[...]

And I bet it's because of this part of my patch:

--- a/WebCore/accessibility/AXObjectCache.h
+++ b/WebCore/accessibility/AXObjectCache.h
@@ -26,7 +26,7 @@
 #ifndef AXObjectCache_h
 #define AXObjectCache_h
 
-#include "AccessibilityObject.h"
+#include "AccessibilityRenderObject.h"
[...]


I think it was a mistake (my mistake) to remove #include
"AccessibilityObject.h", even if it was ok to compile it in my local machine,
and that's what is causing all that mess in the WebKit/mac/WebView/WebFrame.mm.


Now attaching a new patch that does not remove that line, and just adds
"AccessibilityRenderObject.h" instead.


More information about the webkit-reviews mailing list