~ubuntu-branches/ubuntu/quantal/libubuntuone/quantal-proposed

« back to all changes in this revision

Viewing changes to libubuntuoneui/u1-request-chrome.h

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-02-03 12:55:22 UTC
  • mfrom: (37.1.29)
  • Revision ID: package-import@ubuntu.com-20120203125522-pa0hsa0vkstjkkf7
Tags: 2.99.3-0ubuntu1
* New upstream release.
  - Build against webkitgtk 3.0 (LP: #801182)
  - Change the API version to 3.0 to reflect the new gtk 3.0 support
  - Move the existing libubuntuone code to libubuntuoneui in preparation
    for libubuntuone containing non-gui code.
* debian/control, debian/rules, debian/*.install:
  - Update for the API version change and ui split naming
  - Bump Standards-Version
* debian/watch:
  - Update for the new version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 
2
/*
 
3
 * Copyright (C) 2011 Canonical, Ltd.
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of version 2 of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA 02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef __U1_REQUEST_CHROME_H__
 
21
#define __U1_REQUEST_CHROME_H__
 
22
 
 
23
#define LIBSOUP_USE_UNSTABLE_REQUEST_API
 
24
#include <libsoup/soup-request.h>
 
25
 
 
26
#define U1_TYPE_REQUEST_CHROME            (u1_request_chrome_get_type ())
 
27
#define U1_REQUEST_CHROME(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), U1_TYPE_REQUEST_CHROME, U1RequestChrome))
 
28
#define U1_IS_REQUEST_CHROME(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), U1_TYPE_REQUEST_CHROME))
 
29
#define U1_REQUEST_CHROME_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), U1_TYPE_REQUEST_CHROME, U1RequestChrome))
 
30
#define U1_IS_REQUEST_CHROME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), U1_TYPE_REQUEST_CHROME))
 
31
#define U1_REQUEST_CHROME_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), U1_TYPE_REQUEST_CHROME, U1RequestChrome))
 
32
 
 
33
typedef struct _U1RequestChrome        U1RequestChrome;
 
34
typedef struct _U1RequestChromeClass   U1RequestChromeClass;
 
35
typedef struct _U1RequestChromePrivate U1RequestChromePrivate;
 
36
 
 
37
struct _U1RequestChrome {
 
38
        SoupRequest parent;
 
39
 
 
40
    U1RequestChromePrivate *priv;
 
41
};
 
42
 
 
43
struct _U1RequestChromeClass {
 
44
    SoupRequestClass parent_class;
 
45
};
 
46
 
 
47
GType u1_request_chrome_get_type (void);
 
48
 
 
49
#endif