Remove build warning
[platform/upstream/libsoup.git] / libsoup / soup-password-manager-gnome.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * soup-password-manager-gnome.c: GNOME-keyring-based password manager
4  *
5  * Copyright (C) 2008 Red Hat, Inc.
6  */
7
8 /* This is just a stub now; eventually it will go away completely. */
9
10 #ifdef HAVE_CONFIG_H
11 #include <config.h>
12 #endif
13
14 #include "soup-password-manager-gnome.h"
15 #include "soup.h"
16
17 G_DEFINE_TYPE_EXTENDED (SoupPasswordManagerGNOME, soup_password_manager_gnome, G_TYPE_OBJECT, 0,
18                         G_IMPLEMENT_INTERFACE (SOUP_TYPE_SESSION_FEATURE, NULL))
19
20 static void
21 soup_password_manager_gnome_init (SoupPasswordManagerGNOME *manager_gnome)
22 {
23 }
24
25 static void
26 soup_password_manager_gnome_class_init (SoupPasswordManagerGNOMEClass *gnome_class)
27 {
28 }