Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: memconf/config.h

Issue 1539001: Reimplement ibus-gconf so it does not depend on GConf-2 database (Closed)
Patch Set: fix Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « memconf/Makefile.am ('k') | memconf/config.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* ibus - The Input Bus
2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library 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 * Lesser 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., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef MEMCONF_CONFIG_H_
21 #define MEMCONF_CONFIG_H_
22
23 #include <map>
24 #include <string>
25
26 #include <ibus.h>
27
28 struct IBusConfigMemConf {
29 IBusConfigService parent;
30 // We have to use pointer type here for |entries| since g_object_new() uses
31 // malloc rather than new to create IBusConfigMemConf object.
32 std::map<std::string, GValue*>* entries;
33 };
34
35 IBusConfigMemConf* ibus_config_memconf_new(IBusConnection* connection);
36
37 // These tiny hacks are necessary since memconf/main.cc which is copied
38 // from gconf/main.c on compile-time uses "gconf" rather than "memconf."
39 typedef IBusConfigMemConf IBusConfigGConf;
40 #define ibus_config_gconf_new ibus_config_memconf_new
41
42 #endif // MEMCONF_CONFIG_H_
OLDNEW
« no previous file with comments | « memconf/Makefile.am ('k') | memconf/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698