chromium/mojo/public/cpp/platform/platform_handle_internal.h

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

// Internal helpers for converting between MojoSharedBufferGuid and
// base::UnguessableToken. Helpful so base::UnguessableToken can grant access
// to its internal serialization/deserialization helpers.

#ifndef MOJO_PUBLIC_CPP_PLATFORM_PLATFORM_HANDLE_INTERNAL_H_
#define MOJO_PUBLIC_CPP_PLATFORM_PLATFORM_HANDLE_INTERNAL_H_

#include "base/unguessable_token.h"
#include "mojo/public/c/system/platform_handle.h"

namespace mojo {
namespace internal {

class PlatformHandleInternal {};

}  // namespace internal
}  // namespace mojo

#endif  // MOJO_PUBLIC_CPP_PLATFORM_PLATFORM_HANDLE_INTERNAL_H_