
The methodology used to generate this CL is documented in https://crbug.com/1098010#c95. No-Try: true Bug: 1098010 Change-Id: I958bc4caa48822ca0d15594e906783852cd0c499 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3893343 Reviewed-by: Mark Mentovai <mark@chromium.org> Owners-Override: Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047189}
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
// 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 IPC_MESSAGE_VIEW_H_
|
|
#define IPC_MESSAGE_VIEW_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "base/component_export.h"
|
|
#include "base/containers/span.h"
|
|
#include "ipc/ipc_message.h"
|
|
#include "mojo/public/interfaces/bindings/native_struct.mojom-forward.h"
|
|
#include "third_party/abseil-cpp/absl/types/optional.h"
|
|
|
|
namespace IPC {
|
|
|
|
class COMPONENT_EXPORT(IPC_MOJOM) MessageView {
|
|
public:
|
|
MessageView();
|
|
MessageView(
|
|
base::span<const uint8_t> bytes,
|
|
absl::optional<std::vector<mojo::native::SerializedHandlePtr>> handles);
|
|
MessageView(MessageView&&);
|
|
|
|
MessageView(const MessageView&) = delete;
|
|
MessageView& operator=(const MessageView&) = delete;
|
|
|
|
~MessageView();
|
|
|
|
MessageView& operator=(MessageView&&);
|
|
|
|
base::span<const uint8_t> bytes() const { return bytes_; }
|
|
absl::optional<std::vector<mojo::native::SerializedHandlePtr>> TakeHandles();
|
|
|
|
private:
|
|
base::span<const uint8_t> bytes_;
|
|
absl::optional<std::vector<mojo::native::SerializedHandlePtr>> handles_;
|
|
};
|
|
|
|
} // namespace IPC
|
|
|
|
#endif // IPC_MESSAGE_VIEW_H_
|