blob: 205f7c2225e97a25d4ed416c5406d782a4b30e29 [file] [log] [blame]
// Copyright 2014 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_replication_state.h"
#include "third_party/WebKit/common/sandbox_flags.h"
#include "third_party/WebKit/public/web/WebTreeScopeType.h"
namespace content {
FrameReplicationState::FrameReplicationState()
: scope(blink::WebTreeScopeType::kDocument),
insecure_request_policy(blink::kLeaveInsecureRequestsAlone),
has_potentially_trustworthy_unique_origin(false),
has_received_user_gesture(false) {}
FrameReplicationState::FrameReplicationState(
blink::WebTreeScopeType scope,
const std::string& name,
const std::string& unique_name,
blink::WebInsecureRequestPolicy insecure_request_policy,
bool has_potentially_trustworthy_unique_origin,
bool has_received_user_gesture)
: origin(),
name(name),
unique_name(unique_name),
scope(scope),
insecure_request_policy(insecure_request_policy),
has_potentially_trustworthy_unique_origin(
has_potentially_trustworthy_unique_origin),
has_received_user_gesture(has_received_user_gesture) {}
FrameReplicationState::FrameReplicationState(
const FrameReplicationState& other) = default;
FrameReplicationState::~FrameReplicationState() {
}
} // namespace content