blob: 9bd1696c62b7da9a83e47d6ddc787d076935b0de [file] [log] [blame]
// Copyright (c) 2012 The Chromium 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 CHROMEOS_DBUS_DBUS_METHOD_CALL_STATUS_H_
#define CHROMEOS_DBUS_DBUS_METHOD_CALL_STATUS_H_
// TODO(hidehiko): Rename this file to dbus_callback.h, when we fully
// get rid of DBusMethodCallStatus enum defined below.
#include <string>
#include "base/callback.h"
#include "base/component_export.h"
#include "base/optional.h"
namespace dbus {
class ObjectPath;
} // namespace dbus
namespace chromeos {
// Callback to handle response of methods with result.
// If the method returns multiple values, std::tuple<...> will be used.
// In case of error, nullopt should be passed.
template <typename ResultType>
using DBusMethodCallback =
base::OnceCallback<void(base::Optional<ResultType> result)>;
// Callback to handle response of methods without result.
// |result| is true if the method call is successfully completed, otherwise
// false.
using VoidDBusMethodCallback = base::OnceCallback<void(bool result)>;
// A callback to handle responses of methods returning a ObjectPath value that
// doesn't get call status.
using ObjectPathCallback =
base::OnceCallback<void(const dbus::ObjectPath& result)>;
// Called when service becomes available.
using WaitForServiceToBeAvailableCallback =
base::OnceCallback<void(bool service_is_available)>;
} // namespace chromeos
// TODO(https://crbug.com/1164001): remove when //chromeos/dbus moved to ash.
namespace ash {
using ::chromeos::VoidDBusMethodCallback;
using ::chromeos::WaitForServiceToBeAvailableCallback;
} // namespace ash
#endif // CHROMEOS_DBUS_DBUS_METHOD_CALL_STATUS_H_