1/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6#include "nsISupports.idl"
7
8[scriptable, uuid(6ab1c3c1-31cf-4a32-8484-97b5ef0627af)]
9interface mozIGCTelemetry : nsISupports {
10  void init();
11
12  void shutdown();
13};
14
15[scriptable, uuid(93b2a0ca-6306-41c1-b296-c57cad5175c7)]
16interface mozIGCTelemetryJSM : nsISupports {
17  readonly attribute mozIGCTelemetry GCTelemetry;
18};
19