gecko/toolkit/components/telemetry/nsITelemetryPing.idl
Rafael Ávila de Espíndola 9eb559086a Bug 818549 - Replace test-gather-startup with a function. r=vladan.
--HG--
extra : rebase_source : b4671364c707f9a3e5cfbe2b65da636e9f5fc3ea
2012-12-07 00:28:13 -05:00

16 lines
542 B
Plaintext

/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsIObserver.idl"
interface nsIFile;
[scriptable, uuid(077ee790-3a9d-11e2-81c1-0800200c9a66)]
interface nsITelemetryPing : nsIObserver {
jsval getPayload();
void saveHistograms(in nsIFile aFile, in boolean aSync);
void gatherStartup();
};