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

Side by Side Diff: include/network.h

Issue 5338008: flimflam: Enable -Wimplicit-function-declaration. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * 2 *
3 * Connection Manager 3 * Connection Manager
4 * 4 *
5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved.
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as 8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation. 9 * published by the Free Software Foundation.
10 * 10 *
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 int (*connect) (struct connman_network *network); 190 int (*connect) (struct connman_network *network);
191 int (*disconnect) (struct connman_network *network); 191 int (*disconnect) (struct connman_network *network);
192 192
193 int (*activate_cellular_network) (struct connman_network *network, 193 int (*activate_cellular_network) (struct connman_network *network,
194 const char *carrier); 194 const char *carrier);
195 }; 195 };
196 196
197 int connman_network_driver_register(struct connman_network_driver *driver); 197 int connman_network_driver_register(struct connman_network_driver *driver);
198 void connman_network_driver_unregister(struct connman_network_driver *driver); 198 void connman_network_driver_unregister(struct connman_network_driver *driver);
199 199
200 int __connman_network_activate_cellular_modem(struct connman_network *network,
Jason Glasgow 2010/11/29 20:11:30 Belongs in src/connman.h
Elly Fong-Jones 2010/11/29 20:40:29 Done.
201 const char *carrier);
202
200 #ifdef __cplusplus 203 #ifdef __cplusplus
201 } 204 }
202 #endif 205 #endif
203 206
204 #endif /* __CONNMAN_NETWORK_H */ 207 #endif /* __CONNMAN_NETWORK_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698