2009-10-06 12:16:38 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2009-10-06 12:16:38 -07:00
|
|
|
|
2010-07-30 12:17:56 -07:00
|
|
|
#ifndef COMPONENTS_PERFMEASUREMENT_H
|
|
|
|
#define COMPONENTS_PERFMEASUREMENT_H
|
2009-10-06 12:16:38 -07:00
|
|
|
|
|
|
|
#include "nsIXPCScriptable.h"
|
2012-07-18 09:12:55 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-10-06 12:16:38 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2010-07-30 12:17:56 -07:00
|
|
|
namespace jsperf {
|
2009-10-06 12:16:38 -07:00
|
|
|
|
2012-07-18 09:12:55 -07:00
|
|
|
class Module MOZ_FINAL : public nsIXPCScriptable
|
2009-10-06 12:16:38 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIXPCSCRIPTABLE
|
|
|
|
|
|
|
|
Module();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~Module();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|