summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/badging/experimental_badge.idl
blob: 3e84590f40ef52d7e4f0e00885b400069af7b9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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.

// TODO(estevenson): Add link to spec once complete.
// https://github.com/WICG/badging/blob/master/explainer.md

[
    RuntimeEnabled=Badging,
    // TODO(estevenson): Expose the Badge interface to Worker.
    Exposed=Window,
    ImplementedAs=Badge
] interface ExperimentalBadge {
  [CallWith=ScriptState, RaisesException, MeasureAs=BadgeSet]
  static void set(optional [EnforceRange] unsigned long long contents, optional BadgeOptions options);
  [CallWith=ScriptState, MeasureAs=BadgeClear] static void clear(optional BadgeOptions options);
};