chromium/third_party/blink/renderer/core/workers/worker_settings.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/workers/worker_settings.h"

#include "third_party/blink/renderer/core/frame/settings.h"

namespace blink {

WorkerSettings::WorkerSettings(Settings* settings) {}

WorkerSettings::WorkerSettings(
    bool disable_reading_from_canvas,
    bool strict_mixed_content_checking,
    bool allow_running_of_insecure_content,
    bool strictly_block_blockable_mixed_content,
    const GenericFontFamilySettings& generic_font_family_settings)
    :{}

std::unique_ptr<WorkerSettings> WorkerSettings::Copy(
    WorkerSettings* old_settings) {}

void WorkerSettings::CopyFlagValuesFromSettings(Settings* settings) {}

}  // namespace blink