blob: 5bdffe702911194b7f729bbfff22bce9b12a7d37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/webid/webid_utils.h"
#include "content/public/browser/render_frame_host.h"
namespace content {
bool IsSameOriginWithAncestors(RenderFrameHost* host,
const url::Origin& origin) {
RenderFrameHost* parent = host->GetParentOrOuterDocument();
while (parent) {
if (!parent->GetLastCommittedOrigin().IsSameOriginWith(origin)) {
return false;
}
parent = parent->GetParent();
}
return true;
}
} // namespace content
|