<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[191448] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/191448">191448</a></dd>
<dt>Author</dt> <dd>carlosgc@webkit.org</dd>
<dt>Date</dt> <dd>2015-10-22 01:56:01 -0700 (Thu, 22 Oct 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Unreviewed. Fix GTK+ build after <a href="http://trac.webkit.org/projects/webkit/changeset/191423">r191423</a>.

Source/WebCore:

Deprecate removed class WebKitDOMHTMLBaseFontElement.

* PlatformGTK.cmake:
* bindings/gobject/WebKitDOMDeprecated.cpp:
(webkit_dom_html_base_font_element_init):
(webkit_dom_html_base_font_element_class_init):
(webkit_dom_html_base_font_element_get_color):
(webkit_dom_html_base_font_element_set_color):
(webkit_dom_html_base_font_element_get_face):
(webkit_dom_html_base_font_element_set_face):
(webkit_dom_html_base_font_element_get_size):
(webkit_dom_html_base_font_element_set_size):
* bindings/gobject/WebKitDOMDeprecated.h:
* bindings/gobject/WebKitDOMDeprecated.symbols:
* bindings/gobject/WebKitDOMHTMLPrivate.cpp:
* html/HTMLBaseFontElement.h:
* html/HTMLBaseFontElement.idl:

Tools:

Add WebKitDOMHTMLBaseFontElement to the list of deleted classes.

* gtk/webkitdom.py:
(WebKitDOMDocGenerator):</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorePlatformGTKcmake">trunk/Source/WebCore/PlatformGTK.cmake</a></li>
<li><a href="#trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedcpp">trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp</a></li>
<li><a href="#trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedh">trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h</a></li>
<li><a href="#trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedsymbols">trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.symbols</a></li>
<li><a href="#trunkSourceWebCorebindingsgobjectWebKitDOMHTMLPrivatecpp">trunk/Source/WebCore/bindings/gobject/WebKitDOMHTMLPrivate.cpp</a></li>
<li><a href="#trunkSourceWebCorehtmlHTMLBaseFontElementh">trunk/Source/WebCore/html/HTMLBaseFontElement.h</a></li>
<li><a href="#trunkSourceWebCorehtmlHTMLBaseFontElementidl">trunk/Source/WebCore/html/HTMLBaseFontElement.idl</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsgtkwebkitdompy">trunk/Tools/gtk/webkitdom.py</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/ChangeLog        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -1,3 +1,25 @@
</span><ins>+2015-10-22  Carlos Garcia Campos  &lt;cgarcia@igalia.com&gt;
+
+        Unreviewed. Fix GTK+ build after r191423.
+
+        Deprecate removed class WebKitDOMHTMLBaseFontElement.
+
+        * PlatformGTK.cmake:
+        * bindings/gobject/WebKitDOMDeprecated.cpp:
+        (webkit_dom_html_base_font_element_init):
+        (webkit_dom_html_base_font_element_class_init):
+        (webkit_dom_html_base_font_element_get_color):
+        (webkit_dom_html_base_font_element_set_color):
+        (webkit_dom_html_base_font_element_get_face):
+        (webkit_dom_html_base_font_element_set_face):
+        (webkit_dom_html_base_font_element_get_size):
+        (webkit_dom_html_base_font_element_set_size):
+        * bindings/gobject/WebKitDOMDeprecated.h:
+        * bindings/gobject/WebKitDOMDeprecated.symbols:
+        * bindings/gobject/WebKitDOMHTMLPrivate.cpp:
+        * html/HTMLBaseFontElement.h:
+        * html/HTMLBaseFontElement.idl:
+
</ins><span class="cx"> 2015-10-22  Xabier Rodriguez Calvar  &lt;calvaris@igalia.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Streams API] Add writable stream attributes
</span></span></pre></div>
<a id="trunkSourceWebCorePlatformGTKcmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/PlatformGTK.cmake (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/PlatformGTK.cmake        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/PlatformGTK.cmake        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -608,7 +608,6 @@
</span><span class="cx">     html/HTMLAreaElement.idl
</span><span class="cx">     html/HTMLBRElement.idl
</span><span class="cx">     html/HTMLBaseElement.idl
</span><del>-    html/HTMLBaseFontElement.idl
</del><span class="cx">     html/HTMLBodyElement.idl
</span><span class="cx">     html/HTMLButtonElement.idl
</span><span class="cx">     html/HTMLCanvasElement.idl
</span></span></pre></div>
<a id="trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -24,7 +24,6 @@
</span><span class="cx"> #include &quot;JSMainThreadExecState.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMDocumentPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMElementPrivate.h&quot;
</span><del>-#include &quot;WebKitDOMHTMLElement.h&quot;
</del><span class="cx"> #include &quot;WebKitDOMNodeListPrivate.h&quot;
</span><span class="cx"> #include &lt;wtf/GetPtr.h&gt;
</span><span class="cx"> #include &lt;wtf/RefPtr.h&gt;
</span><span class="lines">@@ -155,3 +154,46 @@
</span><span class="cx">     g_warning(&quot;%s: EntityReference has been removed from DOM spec, this function does nothing.&quot;, __func__);
</span><span class="cx">     return nullptr;
</span><span class="cx"> }
</span><ins>+
+G_DEFINE_TYPE(WebKitDOMHTMLBaseFontElement, webkit_dom_html_base_font_element, WEBKIT_DOM_TYPE_HTML_ELEMENT)
+
+static void webkit_dom_html_base_font_element_init(WebKitDOMHTMLBaseFontElement*)
+{
+}
+
+static void webkit_dom_html_base_font_element_class_init(WebKitDOMHTMLBaseFontElementClass*)
+{
+}
+
+gchar* webkit_dom_html_base_font_element_get_color(WebKitDOMHTMLBaseFontElement*)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+    return nullptr;
+}
+
+void webkit_dom_html_base_font_element_set_color(WebKitDOMHTMLBaseFontElement*, const gchar*)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+}
+
+gchar* webkit_dom_html_base_font_element_get_face(WebKitDOMHTMLBaseFontElement*)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+    return nullptr;
+}
+
+void webkit_dom_html_base_font_element_set_face(WebKitDOMHTMLBaseFontElement*, const gchar*)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+}
+
+glong webkit_dom_html_base_font_element_get_size(WebKitDOMHTMLBaseFontElement*)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+    return 0;
+}
+
+void webkit_dom_html_base_font_element_set_size(WebKitDOMHTMLBaseFontElement*, glong)
+{
+    g_warning(&quot;%s: HTMLBaseFont has been removed from DOM spec, this function does nothing.&quot;, __func__);
+}
</ins></span></pre></div>
<a id="trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -23,6 +23,7 @@
</span><span class="cx"> 
</span><span class="cx"> #include &lt;glib.h&gt;
</span><span class="cx"> #include &lt;webkitdom/WebKitDOMNode.h&gt;
</span><ins>+#include &lt;webkitdom/WebKitDOMHTMLElement.h&gt;
</ins><span class="cx"> #include &lt;webkitdom/webkitdomdefines.h&gt;
</span><span class="cx"> 
</span><span class="cx"> G_BEGIN_DECLS
</span><span class="lines">@@ -216,6 +217,102 @@
</span><span class="cx">  */
</span><span class="cx"> WEBKIT_DEPRECATED WebKitDOMEntityReference* webkit_dom_document_create_entity_reference(WebKitDOMDocument* self, const gchar* name, GError** error);
</span><span class="cx"> 
</span><ins>+#define WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT            (webkit_dom_html_base_font_element_get_type())
+#define WEBKIT_DOM_HTML_BASE_FONT_ELEMENT(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT, WebKitDOMHTMLBaseFontElement))
+#define WEBKIT_DOM_HTML_BASE_FONT_ELEMENT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT, WebKitDOMHTMLBaseFontElementClass)
+#define WEBKIT_DOM_IS_HTML_BASE_FONT_ELEMENT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT))
+#define WEBKIT_DOM_IS_HTML_BASE_FONT_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT))
+#define WEBKIT_DOM_HTML_BASE_FONT_ELEMENT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  WEBKIT_DOM_TYPE_HTML_BASE_FONT_ELEMENT, WebKitDOMHTMLBaseFontElementClass))
+
+typedef struct _WebKitDOMHTMLBaseFontElement WebKitDOMHTMLBaseFontElement;
+typedef struct _WebKitDOMHTMLBaseFontElementClass WebKitDOMHTMLBaseFontElementClass;
+
+struct _WebKitDOMHTMLBaseFontElement {
+    WebKitDOMHTMLElement parent_instance;
+};
+
+struct _WebKitDOMHTMLBaseFontElementClass {
+    WebKitDOMHTMLElementClass parent_class;
+};
+
+WEBKIT_DEPRECATED GType
+webkit_dom_html_base_font_element_get_type(void);
+
+/**
+ * webkit_dom_html_base_font_element_get_color:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ *
+ * This function has been removed from the DOM spec and it just returns %NULL.
+ *
+ * Returns: A #gchar
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED gchar*
+webkit_dom_html_base_font_element_get_color(WebKitDOMHTMLBaseFontElement* self);
+
+/**
+ * webkit_dom_html_base_font_element_set_color:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ * @value: A #gchar
+ *
+ * This function has been removed from the DOM spec and it does nothing.
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED void
+webkit_dom_html_base_font_element_set_color(WebKitDOMHTMLBaseFontElement* self, const gchar* value);
+
+/**
+ * webkit_dom_html_base_font_element_get_face:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ *
+ * This function has been removed from the DOM spec and it just returns %NULL.
+ *
+ * Returns: A #gchar
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED gchar*
+webkit_dom_html_base_font_element_get_face(WebKitDOMHTMLBaseFontElement* self);
+
+/**
+ * webkit_dom_html_base_font_element_set_face:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ * @value: A #gchar
+ *
+ * This function has been removed from the DOM spec and it does nothing.
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED void
+webkit_dom_html_base_font_element_set_face(WebKitDOMHTMLBaseFontElement* self, const gchar* value);
+
+/**
+ * webkit_dom_html_base_font_element_get_size:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ *
+ * This function has been removed from the DOM spec and it just returns 0.
+ *
+ * Returns: A #glong
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED glong
+webkit_dom_html_base_font_element_get_size(WebKitDOMHTMLBaseFontElement* self);
+
+/**
+ * webkit_dom_html_base_font_element_set_size:
+ * @self: A #WebKitDOMHTMLBaseFontElement
+ * @value: A #glong
+ *
+ * This function has been removed from the DOM spec and it does nothing.
+ *
+ * Deprecated: 2.12
+ */
+WEBKIT_DEPRECATED void
+webkit_dom_html_base_font_element_set_size(WebKitDOMHTMLBaseFontElement* self, glong value);
+
</ins><span class="cx"> G_END_DECLS
</span><span class="cx"> 
</span><span class="cx"> #endif /* WEBKIT_DISABLE_DEPRECATED */
</span></span></pre></div>
<a id="trunkSourceWebCorebindingsgobjectWebKitDOMDeprecatedsymbols"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.symbols (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.symbols        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.symbols        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -13,3 +13,10 @@
</span><span class="cx"> gboolean webkit_dom_tree_walker_get_expand_entity_references(WebKitDOMTreeWalker*)
</span><span class="cx"> WebKitDOMEntityReference* webkit_dom_document_create_entity_reference(WebKitDOMDocument*, const gchar*, GError**)
</span><span class="cx"> gboolean webkit_dom_node_iterator_get_expand_entity_references(WebKitDOMNodeIterator*)
</span><ins>+GType webkit_dom_html_base_font_element_get_type(void)
+gchar* webkit_dom_html_base_font_element_get_color(WebKitDOMHTMLBaseFontElement*)
+gchar* webkit_dom_html_base_font_element_get_face(WebKitDOMHTMLBaseFontElement*)
+glong webkit_dom_html_base_font_element_get_size(WebKitDOMHTMLBaseFontElement*)
+void webkit_dom_html_base_font_element_set_color(WebKitDOMHTMLBaseFontElement*, const gchar*)
+void webkit_dom_html_base_font_element_set_face(WebKitDOMHTMLBaseFontElement*, const gchar*)
+void webkit_dom_html_base_font_element_set_size(WebKitDOMHTMLBaseFontElement*, glong)
</ins></span></pre></div>
<a id="trunkSourceWebCorebindingsgobjectWebKitDOMHTMLPrivatecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMHTMLPrivate.cpp (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/gobject/WebKitDOMHTMLPrivate.cpp        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMHTMLPrivate.cpp        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -95,7 +95,6 @@
</span><span class="cx"> #include &quot;WebKitDOMHTMLAreaElementPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMHTMLBRElementPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMHTMLBaseElementPrivate.h&quot;
</span><del>-#include &quot;WebKitDOMHTMLBaseFontElementPrivate.h&quot;
</del><span class="cx"> #include &quot;WebKitDOMHTMLBodyElementPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMHTMLButtonElementPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDOMHTMLCanvasElementPrivate.h&quot;
</span><span class="lines">@@ -173,7 +172,6 @@
</span><span class="cx">     macro(applet, Applet) \
</span><span class="cx">     macro(area, Area) \
</span><span class="cx">     macro(base, Base) \
</span><del>-    macro(basefont, BaseFont) \
</del><span class="cx">     macro(blockquote, Quote) \
</span><span class="cx">     macro(body, Body) \
</span><span class="cx">     macro(br, BR) \
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlHTMLBaseFontElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/HTMLBaseFontElement.h (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/HTMLBaseFontElement.h        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/html/HTMLBaseFontElement.h        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -27,7 +27,7 @@
</span><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-// Only used by ObjC / Gobject bindings.
</del><ins>+// Only used by ObjC bindings.
</ins><span class="cx"> class HTMLBaseFontElement final : public HTMLElement {
</span><span class="cx"> private:
</span><span class="cx">     HTMLBaseFontElement(const QualifiedName&amp;, Document&amp;);
</span></span></pre></div>
<a id="trunkSourceWebCorehtmlHTMLBaseFontElementidl"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/html/HTMLBaseFontElement.idl (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/html/HTMLBaseFontElement.idl        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Source/WebCore/html/HTMLBaseFontElement.idl        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -17,18 +17,14 @@
</span><span class="cx">  * Boston, MA 02110-1301, USA.
</span><span class="cx">  */
</span><span class="cx"> 
</span><del>-#if defined(LANGUAGE_OBJECTIVE_C) &amp;&amp; LANGUAGE_OBJECTIVE_C || defined(LANGUAGE_GOBJECT) &amp;&amp; LANGUAGE_GOBJECT
</del><ins>+#if defined(LANGUAGE_OBJECTIVE_C) &amp;&amp; LANGUAGE_OBJECTIVE_C
</ins><span class="cx"> 
</span><span class="cx"> [
</span><span class="cx">     NoInterfaceObject
</span><span class="cx"> ] interface HTMLBaseFontElement : HTMLElement {
</span><span class="cx">     [Reflect] attribute DOMString color;
</span><span class="cx">     [Reflect] attribute DOMString face;
</span><del>-#if defined(LANGUAGE_OBJECTIVE_C) &amp;&amp; LANGUAGE_OBJECTIVE_C
</del><span class="cx">     [Reflect] attribute DOMString size; // this changed to a long, but our existing API is a string
</span><del>-#else
-    [Reflect] attribute long size;
-#endif
</del><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Tools/ChangeLog        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -1,3 +1,12 @@
</span><ins>+2015-10-22  Carlos Garcia Campos  &lt;cgarcia@igalia.com&gt;
+
+        Unreviewed. Fix GTK+ build after r191423.
+
+        Add WebKitDOMHTMLBaseFontElement to the list of deleted classes.
+
+        * gtk/webkitdom.py:
+        (WebKitDOMDocGenerator):
+
</ins><span class="cx"> 2015-10-22  Aakash Jain  &lt;aakash_jain@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Win][EFL][GTK] webkitpy test failed after r191374.
</span></span></pre></div>
<a id="trunkToolsgtkwebkitdompy"></a>
<div class="modfile"><h4>Modified: trunk/Tools/gtk/webkitdom.py (191447 => 191448)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/gtk/webkitdom.py        2015-10-22 08:08:23 UTC (rev 191447)
+++ trunk/Tools/gtk/webkitdom.py        2015-10-22 08:56:01 UTC (rev 191448)
</span><span class="lines">@@ -27,7 +27,7 @@
</span><span class="cx"> 
</span><span class="cx"> class WebKitDOMDocGenerator(object):
</span><span class="cx"> 
</span><del>-    DELETED_CLASSES = [&quot;WebKitDOMEntityReference&quot;]
</del><ins>+    DELETED_CLASSES = [&quot;WebKitDOMEntityReference&quot;, &quot;WebKitDOMHTMLBaseFontElement&quot;]
</ins><span class="cx"> 
</span><span class="cx">     def __init__(self, symbol_files, file_handle):
</span><span class="cx">         self._symbol_files = symbol_files
</span></span></pre>
</div>
</div>

</body>
</html>