summaryrefslogtreecommitdiffstats
path: root/services/java/com
diff options
context:
space:
mode:
authorBaligh Uddin <baligh@google.com>2012-11-02 16:53:04 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-02 16:53:04 -0700
commit6490f42be703e17a1d3c49b4fccb49957c6511f2 (patch)
treec179102c4bb3de3d651913c40002018157e6d549 /services/java/com
parent9b26f158d55125770bfe8c4534722f2a6a5aeb9a (diff)
parent940e92e124db5e97427d4c4942ce68d953879060 (diff)
downloadframeworks_base-6490f42be703e17a1d3c49b4fccb49957c6511f2.zip
frameworks_base-6490f42be703e17a1d3c49b4fccb49957c6511f2.tar.gz
frameworks_base-6490f42be703e17a1d3c49b4fccb49957c6511f2.tar.bz2
am 940e92e1: am 841ce670: Merge commit \'81af21e67cd842d16d4b45e8a2d1ec56ff8d764f\' into jb-mr1-dev
* commit '940e92e124db5e97427d4c4942ce68d953879060': (26 commits) hide the correct text, and more text, on bounce Improve PIN key layouts. Obscure speech for PIN password keys when no headset plugged in. Initial changes to allow dropping on delete target to remove widget. hide multiuser selector when IME is up. Block swipe up gesture if challenge non-interactive. Properly disable challenge handle. Disable disable back if using an alternate back icon. Disable security handle when swiping into camera widget. Import translations. DO NOT MERGE Fix small issue with previous CL Widget size policy, size callbacks Don't show security method until we actually return from the camera Fix whitespace problem and sync with prototype. PUK support. Fix build. SIM PIN support. Use clock's widget as the default keyguard widget Add configurable em-dash separator for all concatenated keyguard strings Cleaning up keyguard persistence threads when the pager is detached. (Bug 7460991) ...
Diffstat (limited to 'services/java/com')
-rw-r--r--services/java/com/android/server/AppWidgetServiceImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/AppWidgetServiceImpl.java b/services/java/com/android/server/AppWidgetServiceImpl.java
index d0dd9cf..daa82f2 100644
--- a/services/java/com/android/server/AppWidgetServiceImpl.java
+++ b/services/java/com/android/server/AppWidgetServiceImpl.java
@@ -599,7 +599,7 @@ class AppWidgetServiceImpl {
}
public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) {
- mContext.enforceCallingPermission(android.Manifest.permission.BIND_APPWIDGET,
+ mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BIND_APPWIDGET,
"bindAppWidgetId appWidgetId=" + appWidgetId + " provider=" + provider);
bindAppWidgetIdImpl(appWidgetId, provider, options);
}
@@ -607,7 +607,7 @@ class AppWidgetServiceImpl {
public boolean bindAppWidgetIdIfAllowed(
String packageName, int appWidgetId, ComponentName provider, Bundle options) {
try {
- mContext.enforceCallingPermission(android.Manifest.permission.BIND_APPWIDGET, null);
+ mContext.enforceCallingOrSelfPermission(android.Manifest.permission.BIND_APPWIDGET, null);
} catch (SecurityException se) {
if (!callerHasBindAppWidgetPermission(packageName)) {
return false;