chromium/mojo/public/cpp/bindings/lib/message_size_estimator.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_MESSAGE_SIZE_ESTIMATOR_H_
#define MOJO_PUBLIC_CPP_BINDINGS_LIB_MESSAGE_SIZE_ESTIMATOR_H_

#include <stddef.h>
#include <stdint.h>

#include "base/component_export.h"
#include "base/containers/flat_map.h"
#include "base/moving_window.h"

namespace mojo::internal {

// TODO(andreaorru): Add a template parameter to help construct
// a vector of the right size for the interface.
class COMPONENT_EXPORT(MOJO_CPP_BINDINGS_BASE) MessageSizeEstimator {};

}  // namespace mojo::internal

#endif  // MOJO_PUBLIC_CPP_BINDINGS_LIB_MESSAGE_SIZE_ESTIMATOR_H_