blob: a8e9bae5d927ae27ee4b23b7d7b3780d5274f3f1 (
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
|
// Copyright 2021 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/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->GetParent();
while (parent) {
if (!parent->GetLastCommittedOrigin().IsSameOriginWith(origin)) {
return false;
}
parent = parent->GetParent();
}
return true;
}
bool IdpUrlIsValid(const GURL& url) {
if (!url.is_valid() || !url.SchemeIs(url::kHttpsScheme))
return false;
return true;
}
} // namespace content
|