summaryrefslogtreecommitdiffstats
path: root/api/system-current.txt
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2015-04-10 20:40:16 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2015-04-28 17:37:18 -0700
commit9f7e39fc9d278642a29df48daf44dceff11acd17 (patch)
tree26fd7b9cb31e9500c14088a7b4d624805b1b10cc /api/system-current.txt
parentff623a5ab3b26cd98790e355e316a65d76197cbd (diff)
downloadframeworks_base-9f7e39fc9d278642a29df48daf44dceff11acd17.zip
frameworks_base-9f7e39fc9d278642a29df48daf44dceff11acd17.tar.gz
frameworks_base-9f7e39fc9d278642a29df48daf44dceff11acd17.tar.bz2
Use Default Browser App for IntentResolution when needed
- add MATCH_ALL as a new flag for telling that all results need to be returned (even if there is some sort of filtering done). - take into account the default Browser App for Intent resolution - also, dont do any domain verification priming for non system app See bug #20144393 Change-Id: Iddd1f2029e3bbf3b99ebc5f416dc7f17e5bad10c
Diffstat (limited to 'api/system-current.txt')
-rw-r--r--api/system-current.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/system-current.txt b/api/system-current.txt
index e49ef9d..44bd836 100644
--- a/api/system-current.txt
+++ b/api/system-current.txt
@@ -9697,6 +9697,7 @@ package android.content.pm {
field public static final int INSTALL_PARSE_FAILED_NO_CERTIFICATES = -103; // 0xffffff99
field public static final int INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION = -102; // 0xffffff9a
field public static final int INSTALL_SUCCEEDED = 1; // 0x1
+ field public static final int MATCH_ALL = 131072; // 0x20000
field public static final int MATCH_DEFAULT_ONLY = 65536; // 0x10000
field public static final long MAXIMUM_VERIFICATION_TIMEOUT = 3600000L; // 0x36ee80L
field public static final int PERMISSION_DENIED = -1; // 0xffffffff
@@ -32550,7 +32551,6 @@ package android.telecom {
public static abstract class InCallService.VideoCall {
ctor public InCallService.VideoCall();
method public abstract void registerCallback(android.telecom.InCallService.VideoCall.Callback);
- method public abstract void unregisterCallback();
method public abstract void requestCallDataUsage();
method public abstract void requestCameraCapabilities();
method public abstract void sendSessionModifyRequest(android.telecom.VideoProfile);
@@ -32561,6 +32561,7 @@ package android.telecom {
method public abstract void setPauseImage(java.lang.String);
method public abstract void setPreviewSurface(android.view.Surface);
method public abstract void setZoom(float);
+ method public abstract void unregisterCallback();
}
public static abstract class InCallService.VideoCall.Callback {