summaryrefslogtreecommitdiff
path: root/chromium/content/renderer/frame_owner_properties.h
blob: 05205c2c753077bed962ae96cbbd93107ad0e6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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.

#ifndef CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_
#define CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_

#include "content/common/frame_owner_properties.h"
#include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"

namespace content {

FrameOwnerProperties ConvertWebFrameOwnerPropertiesToFrameOwnerProperties(
    const blink::WebFrameOwnerProperties& web_frame_owner_properties);

blink::WebFrameOwnerProperties
ConvertFrameOwnerPropertiesToWebFrameOwnerProperties(
    const FrameOwnerProperties& frame_owner_properties);

}  // namespace content

#endif  // CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_