Changeset 54959 in webkit


Ignore:
Timestamp:
Feb 18, 2010 6:27:17 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-18 Diego Escalante Urrelo <descalante@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GTK] WebKitDownload documentation is incomplete
https://bugs.webkit.org/show_bug.cgi?id=35018

Concretely the error signal was undocumented. Also two relevant enums
were not included.

  • docs/webkitgtk-sections.txt:
  • docs/webkitgtk.types:
  • webkit/webkitdownload.cpp: (webkit_download_class_init):
Location:
trunk/WebKit/gtk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r54938 r54959  
     12010-02-18  Diego Escalante Urrelo  <descalante@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GTK] WebKitDownload documentation is incomplete
     6        https://bugs.webkit.org/show_bug.cgi?id=35018
     7
     8        Concretely the error signal was undocumented. Also two relevant enums
     9        were not included.
     10
     11        * docs/webkitgtk-sections.txt:
     12        * docs/webkitgtk.types:
     13        * webkit/webkitdownload.cpp:
     14        (webkit_download_class_init):
     15
    1162010-02-17  Dmitry Titov  <dimich@chromium.org>
    217
  • trunk/WebKit/gtk/docs/webkitgtk-sections.txt

    r52798 r54959  
    127127<SECTION>
    128128<FILE>webkitdownload</FILE>
     129WebKitDownloadError
     130WebKitDownloadStatus
    129131<TITLE>WebKitDownload</TITLE>
    130132WebKitDownload
     
    158160WebKitDownload
    159161WebKitDownloadClass
    160 WebKitDownloadError
    161162WebKitDownloadPrivate
    162 WebKitDownloadStatus
    163163</SECTION>
    164164
  • trunk/WebKit/gtk/docs/webkitgtk.types

    r38834 r54959  
    11#include <webkit/webkit.h>
    22
     3webkit_download_get_type
     4webkit_navigation_response_get_type
    35webkit_network_request_get_type
    46webkit_web_back_forward_list_get_type
     
    79webkit_web_settings_get_type
    810webkit_web_view_get_type
    9 webkit_navigation_response_get_type
    1011webkit_web_view_target_info_get_type
    1112webkit_web_window_features_get_type
  • trunk/WebKit/gtk/webkit/webkitdownload.cpp

    r54822 r54959  
    229229     * WebKitDownload::error:
    230230     * @download: the object on which the signal is emitted
    231      * @current_bytes: the current count of bytes downloaded
    232      * @total_bytes: the total bytes count in the downloaded file, aka file size.
    233      *
    234      * Indicates an error in the download.
     231     * @error_code: the corresponding error code
     232     * @error_detail: detailed error code for the error, see
     233     * #WebKitDownloadError
     234     * @reason: a string describing the error
     235     *
     236     * Emitted when @download is interrupted either by user action or by
     237     * network errors, @error_detail will take any value of
     238     * #WebKitDownloadError.
    235239     *
    236240     * Since: 1.1.2
Note: See TracChangeset for help on using the changeset viewer.