Bumping manifests a=b2g-bump
[gecko.git] / js / ipc / CPOWTimer.h
blob5a568c18006eb0df738e3a65947689a1567e6c48
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * vim: set ts=4 sw=4 et tw=80:
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef CPOWTIMER_H
9 #define CPOWTIMER_H
11 #include "prinrval.h"
13 class JSObject;
15 class MOZ_STACK_CLASS CPOWTimer {
16 public:
17 CPOWTimer(): startInterval(PR_IntervalNow()) {}
18 ~CPOWTimer();
20 private:
21 PRIntervalTime startInterval;
24 #endif