Changeset 167802 in webkit


Ignore:
Timestamp:
Apr 25, 2014 6:35:26 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Iframe seamless support was removed in r163427
https://bugs.webkit.org/show_bug.cgi?id=132192

Patch by Philippe Normand <pnormand@igalia.com> on 2014-04-25
Reviewed by Carlos Garcia Campos.

Add the removed get and set methods as deprecated API to keep
backwards compatibility.

  • bindings/gobject/WebKitDOMDeprecated.cpp:

(webkit_dom_processing_instruction_set_data):
(webkit_dom_html_iframe_element_get_seamless):
(webkit_dom_html_iframe_element_set_seamless):

  • bindings/gobject/WebKitDOMDeprecated.h:
  • bindings/gobject/WebKitDOMDeprecated.symbols:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167801 r167802  
     12014-04-25  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK] Iframe seamless support was removed in r163427
     4        https://bugs.webkit.org/show_bug.cgi?id=132192
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Add the removed get and set methods as deprecated API to keep
     9        backwards compatibility.
     10
     11        * bindings/gobject/WebKitDOMDeprecated.cpp:
     12        (webkit_dom_processing_instruction_set_data):
     13        (webkit_dom_html_iframe_element_get_seamless):
     14        (webkit_dom_html_iframe_element_set_seamless):
     15        * bindings/gobject/WebKitDOMDeprecated.h:
     16        * bindings/gobject/WebKitDOMDeprecated.symbols:
     17
    1182014-04-25  Philippe Normand  <pnormand@igalia.com>
    219
  • trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.cpp

    r167801 r167802  
    575575}
    576576
     577// WebKitDOMHTMLIFrameElement
     578
     579gboolean webkit_dom_html_iframe_element_get_seamless(WebKitDOMHTMLIFrameElement*)
     580{
     581    g_warning("%s: this functionality has been removed from WebKit, this function does nothing.", __func__);
     582    return FALSE;
     583}
     584
     585void webkit_dom_html_iframe_element_set_seamless(WebKitDOMHTMLIFrameElement*, gboolean)
     586{
     587    g_warning("%s: this functionality has been removed from WebKit, this function does nothing.", __func__);
     588}
     589
    577590// WebKitDOMShadowRoot
    578591
  • trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.h

    r167801 r167802  
    613613webkit_dom_processing_instruction_set_data(WebKitDOMProcessingInstruction* self, const gchar* value, GError** error);
    614614
     615/**
     616 * webkit_dom_html_iframe_element_get_seamless:
     617 * @self: A #WebKitDOMHTMLIFrameElement
     618 *
     619 * This functionality has been removed from WebKit, this function does nothing.
     620 *
     621 * Returns: a #gboolean
     622 *
     623 * Deprecated: 2.6
     624 */
     625WEBKIT_DEPRECATED gboolean
     626webkit_dom_html_iframe_element_get_seamless(WebKitDOMHTMLIFrameElement* self);
     627
     628/**
     629 * webkit_dom_html_iframe_element_set_seamless:
     630 * @self: A #WebKitDOMHTMLIFrameElement
     631 * @value: A #gboolean
     632 *
     633 * This functionality has been removed from WebKit, this function does nothing.
     634 *
     635 * Deprecated: 2.6
     636 */
     637WEBKIT_DEPRECATED void
     638webkit_dom_html_iframe_element_set_seamless(WebKitDOMHTMLIFrameElement* self, gboolean value);
     639
    615640WEBKIT_DEPRECATED GType
    616641webkit_dom_shadow_root_get_type(void);
  • trunk/Source/WebCore/bindings/gobject/WebKitDOMDeprecated.symbols

    r167801 r167802  
    5050WebKitDOMElement* webkit_dom_html_document_get_active_element(WebKitDOMHTMLDocument*)
    5151gboolean webkit_dom_html_document_has_focus(WebKitDOMHTMLDocument*)
     52void webkit_dom_html_iframe_element_set_seamless(WebKitDOMHTMLIFrameElement*, gboolean)
     53gboolean webkit_dom_html_iframe_element_get_seamless(WebKitDOMHTMLIFrameElement*)
    5254gboolean webkit_dom_html_input_element_get_webkitdirectory(WebKitDOMHTMLInputElement*)
    5355void webkit_dom_html_input_element_set_webkitdirectory(WebKitDOMHTMLInputElement*, gboolean)
Note: See TracChangeset for help on using the changeset viewer.