diff options
| author | Grace Kloba <klobag@google.com> | 2010-02-01 12:25:11 -0800 |
|---|---|---|
| committer | Grace Kloba <klobag@google.com> | 2010-02-02 10:30:23 -0800 |
| commit | 2df9a91ff5c61dc6d788e034f5e0eb7a77a57ac6 (patch) | |
| tree | fa7de4752662ebd0464d13b57548ec9bae207640 /core/java/android/webkit/JsResult.java | |
| parent | 3565456ca7a48718500fcc8db3ff4c19abfa8cf5 (diff) | |
Hide the android.webkit.CallbackProxy class from the API. This is a android.webkit package class and internal to our implementation.
Although not strictly a published API (the class does not appear in the docs), it has found it's way into the API through
the public, subclassable android.webkit.JsResult class where it is a protected member.
Based on changed from Ben.
Diffstat (limited to 'core/java/android/webkit/JsResult.java')
| -rw-r--r-- | core/java/android/webkit/JsResult.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/java/android/webkit/JsResult.java b/core/java/android/webkit/JsResult.java index 0c86e0a2fc2a..e61ab216e3c4 100644 --- a/core/java/android/webkit/JsResult.java +++ b/core/java/android/webkit/JsResult.java @@ -26,7 +26,10 @@ public class JsResult { private boolean mTriedToNotifyBeforeReady; // This is a basic result of a confirm or prompt dialog. protected boolean mResult; - // This is the caller of the prompt and is the object that is waiting. + /** + * This is the caller of the prompt and is the object that is waiting. + * @hide + */ protected final CallbackProxy mProxy; // This is the default value of the result. private final boolean mDefaultValue; |
