blob: 96ce5bb6193861a7c100fee0e0fca4fcd6dabd5a (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright 2015 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.
#include "ipc/brokerable_attachment.h"
#include <stddef.h>
#include "build/build_config.h"
#include "ipc/attachment_broker.h"
namespace IPC {
// BrokerableAttachment::AttachmentId ------------------------------------------
#if !USE_ATTACHMENT_BROKER
// static
BrokerableAttachment::AttachmentId
BrokerableAttachment::AttachmentId::CreateIdWithRandomNonce() {
CHECK(false) << "Platforms that don't support attachment brokering shouldn't "
"be trying to generating a random nonce.";
return AttachmentId();
}
#endif
BrokerableAttachment::AttachmentId::AttachmentId() {
for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
nonce[i] = 0;
}
BrokerableAttachment::AttachmentId::AttachmentId(const char* start_address,
size_t size) {
DCHECK(size == BrokerableAttachment::kNonceSize);
for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
nonce[i] = start_address[i];
}
void BrokerableAttachment::AttachmentId::SerializeToBuffer(char* start_address,
size_t size) {
DCHECK(size == BrokerableAttachment::kNonceSize);
for (size_t i = 0; i < BrokerableAttachment::kNonceSize; ++i)
start_address[i] = nonce[i];
}
// BrokerableAttachment::BrokerableAttachment ----------------------------------
BrokerableAttachment::BrokerableAttachment()
: id_(AttachmentId::CreateIdWithRandomNonce()) {}
BrokerableAttachment::BrokerableAttachment(const AttachmentId& id) : id_(id) {}
BrokerableAttachment::~BrokerableAttachment() {}
BrokerableAttachment::AttachmentId BrokerableAttachment::GetIdentifier() const {
return id_;
}
bool BrokerableAttachment::NeedsBrokering() const {
return GetBrokerableType() == PLACEHOLDER;
}
BrokerableAttachment::Type BrokerableAttachment::GetType() const {
return TYPE_BROKERABLE_ATTACHMENT;
}
#if defined(OS_POSIX)
base::PlatformFile BrokerableAttachment::TakePlatformFile() {
NOTREACHED();
return base::PlatformFile();
}
#endif // OS_POSIX
} // namespace IPC
|