diff options
author | Costin Manolache <costin@google.com> | 2010-12-13 14:50:45 -0800 |
---|---|---|
committer | Costin Manolache <costin@google.com> | 2010-12-17 11:26:34 -0800 |
commit | a40c6304deb860f10a51ce950ac1abc21a23d08b (patch) | |
tree | cacc7d7fe7a65d61f0d0cd3a77212529fe32ffac /core/res | |
parent | 43c0db48d265a3d8f136d107e181e8c23455ec37 (diff) | |
download | frameworks_base-a40c6304deb860f10a51ce950ac1abc21a23d08b.zip frameworks_base-a40c6304deb860f10a51ce950ac1abc21a23d08b.tar.gz frameworks_base-a40c6304deb860f10a51ce950ac1abc21a23d08b.tar.bz2 |
Add a new attribute to auth descriptors to indicate custom handling of permission and token caching
Change-Id: Icf6bd0e7bf265db9ef8bf368e8f3d8e91182f834
Diffstat (limited to 'core/res')
-rwxr-xr-x | core/res/res/values/attrs.xml | 9 | ||||
-rw-r--r-- | core/res/res/values/public.xml | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 98c9270..873f539 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -48,6 +48,7 @@ theme does not set this value, meaning it is based on whether the window is floating. --> <attr name="backgroundDimEnabled" format="boolean" /> + <!-- =========== --> <!-- Text styles --> <!-- =========== --> @@ -261,7 +262,7 @@ <!-- Flag indicating whether this is a translucent window. --> <attr name="windowIsTranslucent" format="boolean" /> <!-- Flag indicating that this window's background should be the - user's current wallpaper. --> + user's current wallpaper. --> <attr name="windowShowWallpaper" format="boolean" /> <!-- This Drawable is overlaid over the foreground of the Window's content area, usually to place a shadow below the title. --> @@ -4310,7 +4311,7 @@ If not supplied, then no activity will be launched. --> <attr name="configure" format="string" /> <!-- A preview of what the AppWidget will look like after it's configured. - If not supplied, the AppWidget's icon will be used. --> + If not supplied, the AppWidget's icon will be used. --> <attr name="previewImage" format="reference" /> <!-- The view id of the AppWidget subview which should be auto-advanced. by the widget's host. --> @@ -4421,6 +4422,10 @@ <attr name="smallIcon" format="reference"/> <!-- A preferences.xml file for authenticator-specific settings. --> <attr name="accountPreferences" format="reference"/> + <!-- Account handles its own token storage and permissions. + Default to false + --> + <attr name="customTokens" format="boolean"/> </declare-styleable> <!-- =============================== --> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index 3a5b238..7e06c86 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1407,6 +1407,7 @@ <public type="attr" name="fastScrollPreviewBackgroundRight" /> <public type="attr" name="fastScrollTrackDrawable" /> <public type="attr" name="fastScrollOverlayPosition" /> + <public type="attr" name="customTokens" /> <public type="anim" name="animator_fade_in" /> <public type="anim" name="animator_fade_out" /> |