aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androiddevice.cpp
diff options
context:
space:
mode:
authorDavid Schulz <[email protected]>2013-09-16 15:30:30 +0200
committerDavid Schulz <[email protected]>2013-09-20 10:48:47 +0200
commita06af356318bb8ed7a402bc5e5beee3b268df521 (patch)
treeb936265f13596f406a2bf9eb7c0aa16dfad6813e /src/plugins/android/androiddevice.cpp
parentca15d0aa95fec76ce41c72ed747894969c978986 (diff)
ProjectExplorer: Introduce DeviceProcessSignalOperation.
Every device can now return a DeviceProcessSignalOperation, which allows to kill or interrupt processes running on the device. Change-Id: Idaa04ebc767e09ca167fa033ed93860b9b81479e Reviewed-by: Christian Kandeler <[email protected]> Reviewed-by: David Kaspar <[email protected]> Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r--src/plugins/android/androiddevice.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp
index 374b4ad3a1b..8fd3d94e2d3 100644
--- a/src/plugins/android/androiddevice.cpp
+++ b/src/plugins/android/androiddevice.cpp
@@ -89,6 +89,11 @@ bool AndroidDevice::canAutoDetectPorts() const
return true;
}
+DeviceProcessSignalOperation::Ptr AndroidDevice::signalOperation() const
+{
+ return DeviceProcessSignalOperation::Ptr();
+}
+
IDevice::Ptr AndroidDevice::clone() const
{
return IDevice::Ptr(new AndroidDevice(*this));