[Webkit-unassigned] [Bug 35210] [Gtk] implements ChromeClient::requestGeolocationPermissionForFrame

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 1 11:16:57 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=35210





--- Comment #19 from Xan Lopez <xan.lopez at gmail.com>  2010-03-01 11:16:57 PST ---
(From update of attachment 49676)
>+/**
>+ * SECTION:webkitgeolocationpolicydecision
>+ * @short_description: Liaison between WebKit and the application regarding asynchronous geolocation policy decisions
>+ *
>+ * #WebKitGeolocationPolicyDecision objects are given to the application when
>+ * geolocation-policy-decision-requested signal is emitted. The application
>+ * uses it to tell the engine whether it wants to allow or deny geolocation for

missing 'a'

>+ * given frame.
>+ */
>+

>+typedef struct _WebKitGeolocationPolicyDecisionPrivate WebKitGeolocationPolicyDecisionPrivate;
>+struct _WebKitGeolocationPolicyDecision {
>+    GObject parent_instance;
>+
>+    /*< private >*/
>+    WebKitGeolocationPolicyDecisionPrivate* priv;
>+};
>+
>+struct _WebKitGeolocationPolicyDecisionClass {
>+    GObjectClass parent_class;
>+
>+    /* Padding for future expansion */
>+    void (*_webkit_reserved0) (void);
>+    void (*_webkit_reserved1) (void);
>+    void (*_webkit_reserved2) (void);
>+    void (*_webkit_reserved3) (void);
>+};

Should probably use camelCase for struct members.

Looks fine to me otherwise, r=1/2 me :)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list