Android: Add QML profiling

Change-Id: Ie06c0b49707f8ec549f180f41c565fd223240186
Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Aurindam Jana
2013-05-03 12:41:58 +02:00
committed by hjk
parent c9d1c5b354
commit 24af63ec4b
21 changed files with 451 additions and 58 deletions

View File

@@ -30,9 +30,12 @@
#ifndef ANDROIDDEBUGSUPPORT_H
#define ANDROIDDEBUGSUPPORT_H
#include "androidrunconfiguration.h"
#include "androidrunsupport.h"
namespace Debugger { class DebuggerRunControl; }
namespace Debugger {
class DebuggerEngine;
class DebuggerRunControl;
}
namespace ProjectExplorer { class RunControl; }
namespace Android {
@@ -41,7 +44,7 @@ namespace Internal {
class AndroidRunConfiguration;
class AndroidRunner;
class AndroidDebugSupport : public QObject
class AndroidDebugSupport : public AndroidRunSupport
{
Q_OBJECT
@@ -61,9 +64,7 @@ private slots:
void handleRemoteErrorOutput(const QByteArray &output);
private:
Debugger::DebuggerRunControl* m_runControl;
AndroidRunner * const m_runner;
const QString m_dumperLib;
Debugger::DebuggerEngine *m_engine;
};
} // namespace Internal