chromium/content/public/browser/allow_service_worker_result.cc

// Copyright 2020 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/public/browser/allow_service_worker_result.h"

namespace content {

AllowServiceWorkerResult AllowServiceWorkerResult::Yes() {}

AllowServiceWorkerResult AllowServiceWorkerResult::No() {}

AllowServiceWorkerResult AllowServiceWorkerResult::FromPolicy(
    bool javascript_blocked_by_policy,
    bool cookies_blocked_by_policy) {}

AllowServiceWorkerResult::AllowServiceWorkerResult(
    bool allowed,
    bool javascript_blocked_by_policy,
    bool cookies_blocked_by_policy)
    :{}

bool AllowServiceWorkerResult::operator==(
    const AllowServiceWorkerResult& other) const {}

}  // namespace content