2012-02-07 21:22:30 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2012-02-07 21:22:30 +04:00
|
|
|
|
|
|
|
#ifndef COMPONENTS_JSINSPECTOR_H
|
|
|
|
#define COMPONENTS_JSINSPECTOR_H
|
|
|
|
|
|
|
|
#include "nsIJSInspector.h"
|
2012-07-18 20:12:55 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-02-07 21:22:30 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace jsinspector {
|
|
|
|
|
2012-07-18 20:12:55 +04:00
|
|
|
class nsJSInspector MOZ_FINAL : public nsIJSInspector
|
2012-02-07 21:22:30 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIJSINSPECTOR
|
|
|
|
|
|
|
|
nsJSInspector();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsJSInspector();
|
|
|
|
|
|
|
|
PRUint32 mNestedLoopLevel;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|