1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#include "nsIDataCallInterfaceService.idl"
6
7[scriptable, uuid(f008d00c-e2b8-49b2-8f88-19111577938e)]
8interface nsIGonkDataCallInterfaceService : nsIDataCallInterfaceService
9{
10  /**
11   * Called by RadioInterface or lower layer to notify about data call list
12   * changes.
13   */
14  void notifyDataCallListChanged(in unsigned long clientId,
15                                 in uint32_t count,
16                                 [array, size_is(count)] in nsIDataCall
17                                   dataCalls);
18};