summaryrefslogtreecommitdiff
path: root/chromium/ipc/message_view.h
blob: 8fd4c79f484a75707e3be0ee4b178ede779eb1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2018 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 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_