blob: 6e2854c21efcecd80ed401a29e9a6265e9afa772 [file] [log] [blame]
// Copyright 2018 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.
#ifndef CONTENT_PUBLIC_BROWSER_SHARED_CORS_ORIGIN_ACCESS_LIST_H_
#define CONTENT_PUBLIC_BROWSER_SHARED_CORS_ORIGIN_ACCESS_LIST_H_
#include <vector>
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
#include "services/network/public/mojom/cors_origin_pattern.mojom.h"
#include "url/origin.h"
namespace network {
namespace cors {
class OriginAccessList;
} // namespace cors
} // namespace network
namespace content {
// A public interface to manage CORS origin access lists on the UI thread.
// The shared network::cors::OriginAccessList instance can only be accessed on
// the IO thread. Callers on UI thread must use this wrapper class.
// TODO(toyoshim): Remove once the NetworkService is enabled.
class CONTENT_EXPORT SharedCorsOriginAccessList
: public base::RefCountedThreadSafe<SharedCorsOriginAccessList> {
public:
SharedCorsOriginAccessList() = default;
// Sets the access list to an internal network::cors::OriginAccessList
// instance so that its IsAllowed() method works for all users that refer the
// shared network::cors::OriginAccessList instance returned by
// origin_access_list() below. |allow_patterns| and |block_patterns| will be
// moved so to pass the lists to the IO thread.
// Should be called on the UI thread, and |closure| runs on the UI thread too.
virtual void SetForOrigin(
const url::Origin& source_origin,
std::vector<network::mojom::CorsOriginPatternPtr> allow_patterns,
std::vector<network::mojom::CorsOriginPatternPtr> block_patterns,
base::OnceClosure closure) = 0;
// Gets a shared OriginAccessList instance pointer. |this| should outlives
// callers' OriginAccessList instance uses. Should be called on the IO thread.
virtual const network::cors::OriginAccessList& GetOriginAccessList()
const = 0;
protected:
virtual ~SharedCorsOriginAccessList() = default;
private:
friend class base::RefCountedThreadSafe<SharedCorsOriginAccessList>;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_SHARED_CORS_ORIGIN_ACCESS_LIST_H_