summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/cookie_store/service_worker_global_scope_cookie_store.idl
blob: 72c2d0cc851b6f8c8fc5a21b870a87f48f036e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 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.

// https://github.com/WICG/async-cookies-api/blob/gh-pages/explainer.md

[
  RuntimeEnabled=CookieStoreWorker,
  ImplementedAs=GlobalCookieStore
] partial interface ServiceWorkerGlobalScope {
  [SameObject] readonly attribute CookieStore cookieStore;
  attribute EventHandler oncookiechange;
};