blob: e84de4237015b817c2b1c0a7cdf7ad24b04befc9 (
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
|
// Copyright 2016 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 "content/common/frame_owner_properties.h"
namespace content {
FrameOwnerProperties::FrameOwnerProperties()
: scrolling_mode(blink::WebFrameOwnerProperties::ScrollingMode::Auto),
margin_width(-1),
margin_height(-1),
allow_fullscreen(false) {}
FrameOwnerProperties::FrameOwnerProperties(const FrameOwnerProperties& other) =
default;
FrameOwnerProperties::FrameOwnerProperties(
const blink::WebFrameOwnerProperties& web_frame_owner_properties)
: scrolling_mode(web_frame_owner_properties.scrollingMode),
margin_width(web_frame_owner_properties.marginWidth),
margin_height(web_frame_owner_properties.marginHeight),
allow_fullscreen(web_frame_owner_properties.allowFullscreen),
required_csp(web_frame_owner_properties.requiredCsp.utf8()),
delegated_permissions(
web_frame_owner_properties.delegatedPermissions.begin(),
web_frame_owner_properties.delegatedPermissions.end()) {}
FrameOwnerProperties::~FrameOwnerProperties() {}
blink::WebFrameOwnerProperties FrameOwnerProperties::ToWebFrameOwnerProperties()
const {
blink::WebFrameOwnerProperties result;
result.scrollingMode = scrolling_mode;
result.marginWidth = margin_width;
result.marginHeight = margin_height;
result.allowFullscreen = allow_fullscreen;
result.requiredCsp = blink::WebString::fromUTF8(required_csp);
result.delegatedPermissions =
blink::WebVector<blink::WebPermissionType>(delegated_permissions);
return result;
}
bool FrameOwnerProperties::operator==(const FrameOwnerProperties& other) const {
return scrolling_mode == other.scrolling_mode &&
margin_width == other.margin_width &&
margin_height == other.margin_height &&
allow_fullscreen == other.allow_fullscreen &&
required_csp == other.required_csp &&
std::equal(delegated_permissions.begin(), delegated_permissions.end(),
other.delegated_permissions.begin());
}
} // namespace content
|