summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSvet Ganov <svetoslavganov@google.com>2015-07-22 18:58:32 -0700
committerSvet Ganov <svetoslavganov@google.com>2015-07-22 19:03:29 -0700
commit7bb48725debf53a1142e959907dae12b729ae531 (patch)
tree2f4e7c93ad74f8d67b2eb6bd138cac63fd053913 /core
parenta0a71d8a221d4f3896c7b0d3b2b87eba4e7a77f7 (diff)
downloadframeworks_base-7bb48725debf53a1142e959907dae12b729ae531.zip
frameworks_base-7bb48725debf53a1142e959907dae12b729ae531.tar.gz
frameworks_base-7bb48725debf53a1142e959907dae12b729ae531.tar.bz2
Shut down UiAutomationConnection without a lock held
bug:22599759 Change-Id: I90bca614960522269497127658c16b0bb6ec0476
Diffstat (limited to 'core')
-rw-r--r--core/java/android/app/IUiAutomationConnection.aidl4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/app/IUiAutomationConnection.aidl b/core/java/android/app/IUiAutomationConnection.aidl
index 8ab9ac3..474154b 100644
--- a/core/java/android/app/IUiAutomationConnection.aidl
+++ b/core/java/android/app/IUiAutomationConnection.aidl
@@ -38,10 +38,12 @@ interface IUiAutomationConnection {
boolean injectInputEvent(in InputEvent event, boolean sync);
boolean setRotation(int rotation);
Bitmap takeScreenshot(int width, int height);
- void shutdown();
boolean clearWindowContentFrameStats(int windowId);
WindowContentFrameStats getWindowContentFrameStats(int windowId);
void clearWindowAnimationFrameStats();
WindowAnimationFrameStats getWindowAnimationFrameStats();
void executeShellCommand(String command, in ParcelFileDescriptor fd);
+
+ // Called from the system process.
+ oneway void shutdown();
}