blob: 58282734ab0b4e0bf5205f1bd97b6425e2b813d5 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_BASE_COMPLETION_ONCE_CALLBACK_H_
#define NET_BASE_COMPLETION_ONCE_CALLBACK_H_
#include <stdint.h>
#include "base/cancelable_callback.h"
#include "base/functional/callback.h"
namespace net {
// A OnceCallback specialization that takes a single int parameter. Usually this
// is used to report a byte count or network error code.
//
// DEPRECATED, DO NOT USE! https://crbug.com/471017624
// Use the correct type, whether it be net::Error directly, or base::ByteSize
// for byte sizes, or base::expected for combining both into one result.
using CompletionOnceCallback = base::OnceCallback<void(int)>;
// 64bit version of the OnceCallback specialization that takes a single int64_t
// parameter. Usually this is used to report a file offset, size or network
// error code.
//
// DEPRECATED, DO NOT USE! https://crbug.com/471017624
// Use the correct type, whether it be net::Error directly, or base::ByteSize
// for byte sizes, or base::expected for combining both into one result.
using Int64CompletionOnceCallback = base::OnceCallback<void(int64_t)>;
} // namespace net
#endif // NET_BASE_COMPLETION_ONCE_CALLBACK_H_