diff options
| author | Ben Murdoch <benm@google.com> | 2010-06-29 19:20:11 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2010-06-29 19:20:53 +0100 |
| commit | 6312de2a9a2cf7304d91b7f78c3dff2db59b918c (patch) | |
| tree | c0ab57918eab89cde15980c4b166b5608992a0bb /core/java/android/webkit/WebChromeClient.java | |
| parent | 9593b2ac9c865bd0b7de4ad0f1dc1776e0f0b686 (diff) | |
Receive notification from native webcore that the page being viewed
has marked itself as being an installable web app. Default implementation
in the WebChromeClient does nothing.
Requires an external/webkit change.
b/2766917
Change-Id: I7aae1b097f866e3d1c6c6a7a31a55bb12ff6a441
Diffstat (limited to 'core/java/android/webkit/WebChromeClient.java')
| -rw-r--r-- | core/java/android/webkit/WebChromeClient.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebChromeClient.java b/core/java/android/webkit/WebChromeClient.java index ed06a3acc6de..443a3b330474 100644 --- a/core/java/android/webkit/WebChromeClient.java +++ b/core/java/android/webkit/WebChromeClient.java @@ -337,4 +337,11 @@ public class WebChromeClient { public void onSelectionDone() { } + /** + * Tell the client that the page being viewed is web app capable, + * i.e. has specified the fullscreen-web-app-capable meta tag. + * @hide + */ + public void setInstallableWebApp() { } + } |
