blob: 0567df58f315f6dd4b619f59ce04567d71830cdc [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_MM1_MODEM_LOCATION_PROXY_INTERFACE_H_
#define SHILL_MM1_MODEM_LOCATION_PROXY_INTERFACE_H_
#include <base/basictypes.h>
#include "shill/callbacks.h"
namespace shill {
class Error;
namespace mm1 {
// These are the methods that an org.freedesktop.ModemManager1.Modem.Location
// proxy must support. The interface is provided so that it can be mocked
// in tests. All calls are made asynchronously. Call completion is signalled
// via callbacks passed to the methods.
class ModemLocationProxyInterface {
public:
virtual ~ModemLocationProxyInterface() {}
virtual void Setup(uint32_t sources,
bool signal_location,
Error *error,
const ResultCallback &callback,
int timeout) = 0;
virtual void GetLocation(Error *error,
const DBusEnumValueMapCallback &callback,
int timeout) = 0;
// Properties
virtual uint32_t Capabilities() = 0;
virtual uint32_t Enabled() = 0;
virtual bool SignalsLocation() = 0;
virtual const DBusEnumValueMap Location() = 0;
};
} // namespace mm1
} // namespace shill
#endif // SHILL_MM1_MODEM_LOCATION_PROXY_INTERFACE_H_