blob: 0046466d7f1a92b27f701b7de0403ce6599b8830 [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/public/web/WebSandboxFlags.h"
#include "third_party/WebKit/public/web/WebTreeScopeType.h"
namespace content {
FrameReplicationState::FrameReplicationState()
: sandbox_flags(blink::WebSandboxFlags::None),
scope(blink::WebTreeScopeType::Document),
should_enforce_strict_mixed_content_checking(false) {}
FrameReplicationState::FrameReplicationState(
blink::WebTreeScopeType scope,
const std::string& name,
blink::WebSandboxFlags sandbox_flags,
bool should_enforce_strict_mixed_content_checking)
: origin(),
sandbox_flags(sandbox_flags),
name(name),
scope(scope),
should_enforce_strict_mixed_content_checking(
should_enforce_strict_mixed_content_checking) {}
FrameReplicationState::~FrameReplicationState() {
}
} // namespace content