blob: b713022e59e454e90d9d11cb7f55fd95461140dc (
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
|
// Copyright 2017 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/renderer/frame_owner_properties.h"
#include <algorithm>
#include <iterator>
#include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
#include "third_party/WebKit/public/platform/modules/permissions/permission.mojom.h"
namespace content {
FrameOwnerProperties ConvertWebFrameOwnerPropertiesToFrameOwnerProperties(
const blink::WebFrameOwnerProperties& web_frame_owner_properties) {
FrameOwnerProperties result;
result.name = web_frame_owner_properties.name.Utf8();
result.scrolling_mode = web_frame_owner_properties.scrolling_mode;
result.margin_width = web_frame_owner_properties.margin_width;
result.margin_height = web_frame_owner_properties.margin_height;
result.allow_fullscreen = web_frame_owner_properties.allow_fullscreen;
result.allow_payment_request =
web_frame_owner_properties.allow_payment_request;
result.required_csp = web_frame_owner_properties.required_csp.Utf8();
std::copy(web_frame_owner_properties.allowed_features.begin(),
web_frame_owner_properties.allowed_features.end(),
std::back_inserter(result.allowed_features));
return result;
}
blink::WebFrameOwnerProperties
ConvertFrameOwnerPropertiesToWebFrameOwnerProperties(
const FrameOwnerProperties& frame_owner_properties) {
blink::WebFrameOwnerProperties result;
result.name = blink::WebString::FromUTF8(frame_owner_properties.name);
result.scrolling_mode = frame_owner_properties.scrolling_mode;
result.margin_width = frame_owner_properties.margin_width;
result.margin_height = frame_owner_properties.margin_height;
result.allow_fullscreen = frame_owner_properties.allow_fullscreen;
result.allow_payment_request = frame_owner_properties.allow_payment_request;
result.required_csp =
blink::WebString::FromUTF8(frame_owner_properties.required_csp);
result.allowed_features = blink::WebVector<blink::WebFeaturePolicyFeature>(
frame_owner_properties.allowed_features);
return result;
}
} // namespace content
|