| 41 |
41 |
| 42 static WebKitWebViewClass *parent_class = NULL; |
42 static WebKitWebViewClass *parent_class = NULL; |
| 43 |
43 |
| 44 struct GtkWebViewPriv { |
44 struct GtkWebViewPriv { |
| 45 GHashTable *images; /**< a map from id to temporary file for the image */ |
45 GHashTable *images; /**< a map from id to temporary file for the image */ |
| 46 gboolean empty; /**< whether anything has been appended **/ |
46 gboolean empty; /**< whether anything has been appended **/ |
| 47 |
47 |
| 48 /* JS execute queue */ |
48 /* JS execute queue */ |
| 49 GQueue *js_queue; |
49 GQueue *js_queue; |
| 50 gboolean is_loading; |
50 gboolean is_loading; |
| 51 GtkAdjustment *vadj; |
51 GtkAdjustment *vadj; |