blob: d79fc6457761da6ea2730edc4929ee373785e54b [file] [log] [blame]
// Copyright 2021 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_CELLULAR_MM1_MODEM_MODEM3GPP_PROFILE_MANAGER_PROXY_INTERFACE_H_
#define SHILL_CELLULAR_MM1_MODEM_MODEM3GPP_PROFILE_MANAGER_PROXY_INTERFACE_H_
#include <string>
#include "shill/callbacks.h"
namespace shill {
class Error;
namespace mm1 {
using Modem3gppProfileManagerUpdatedSignalCallback =
base::RepeatingCallback<void()>;
// These are the methods that a
// org.freedesktop.ModemManager1.Modem.Modem3gpp.ProfileManager 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 the callbacks
// passed to the methods.
class ModemModem3gppProfileManagerProxyInterface {
public:
virtual ~ModemModem3gppProfileManagerProxyInterface() = default;
virtual void List(ResultVariantDictionariesOnceCallback callback,
int timeout) = 0;
virtual void SetUpdatedCallback(
const Modem3gppProfileManagerUpdatedSignalCallback& callback) = 0;
};
} // namespace mm1
} // namespace shill
#endif // SHILL_CELLULAR_MM1_MODEM_MODEM3GPP_PROFILE_MANAGER_PROXY_INTERFACE_H_