Title: [94636] trunk/Source/WebCore
- Revision
- 94636
- Author
- [email protected]
- Date
- 2011-09-06 21:35:50 -0700 (Tue, 06 Sep 2011)
Log Message
Attempt to fix GTK build.
* bindings/gobject/WebKitHTMLElementWrapperFactory.cpp:
(WebKit::createHTMLElementWrapper):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (94635 => 94636)
--- trunk/Source/WebCore/ChangeLog 2011-09-07 04:35:49 UTC (rev 94635)
+++ trunk/Source/WebCore/ChangeLog 2011-09-07 04:35:50 UTC (rev 94636)
@@ -1,3 +1,10 @@
+2011-09-06 Adam Barth <[email protected]>
+
+ Attempt to fix GTK build.
+
+ * bindings/gobject/WebKitHTMLElementWrapperFactory.cpp:
+ (WebKit::createHTMLElementWrapper):
+
2011-09-06 Ryosuke Niwa <[email protected]>
fast/forms/suggested-value-crash.html crashes on Windows
Modified: trunk/Source/WebCore/bindings/gobject/WebKitHTMLElementWrapperFactory.cpp (94635 => 94636)
--- trunk/Source/WebCore/bindings/gobject/WebKitHTMLElementWrapperFactory.cpp 2011-09-07 04:35:49 UTC (rev 94635)
+++ trunk/Source/WebCore/bindings/gobject/WebKitHTMLElementWrapperFactory.cpp 2011-09-07 04:35:50 UTC (rev 94636)
@@ -41,7 +41,6 @@
#include "HTMLBRElement.h"
#include "HTMLBaseElement.h"
#include "HTMLBaseFontElement.h"
-#include "HTMLBlockquoteElement.h"
#include "HTMLBodyElement.h"
#include "HTMLButtonElement.h"
#include "HTMLCanvasElement.h"
@@ -101,7 +100,6 @@
#include "webkit/WebKitDOMHTMLBRElementPrivate.h"
#include "webkit/WebKitDOMHTMLBaseElementPrivate.h"
#include "webkit/WebKitDOMHTMLBaseFontElementPrivate.h"
-#include "webkit/WebKitDOMHTMLBlockquoteElementPrivate.h"
#include "webkit/WebKitDOMHTMLBodyElementPrivate.h"
#include "webkit/WebKitDOMHTMLButtonElementPrivate.h"
#include "webkit/WebKitDOMHTMLCanvasElementPrivate.h"
@@ -206,11 +204,6 @@
return wrapHTMLBaseFontElement(static_cast<HTMLBaseFontElement*>(element.get()));
}
-static gpointer createBlockquoteWrapper(PassRefPtr<HTMLElement> element)
-{
- return wrapHTMLBlockquoteElement(static_cast<HTMLBlockquoteElement*>(element.get()));
-}
-
static gpointer createBodyWrapper(PassRefPtr<HTMLElement> element)
{
return wrapHTMLBodyElement(static_cast<HTMLBodyElement*>(element.get()));
@@ -479,7 +472,7 @@
map.set(areaTag.localName().impl(), createAreaWrapper);
map.set(baseTag.localName().impl(), createBaseWrapper);
map.set(basefontTag.localName().impl(), createBaseFontWrapper);
- map.set(blockquoteTag.localName().impl(), createBlockquoteWrapper);
+ map.set(blockquoteTag.localName().impl(), createQuoteWrapper);
map.set(bodyTag.localName().impl(), createBodyWrapper);
map.set(brTag.localName().impl(), createBRWrapper);
map.set(buttonTag.localName().impl(), createButtonWrapper);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes