diff options
Diffstat (limited to 'src/com/android/camera/VideoCamera.java')
| -rw-r--r-- | src/com/android/camera/VideoCamera.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/camera/VideoCamera.java b/src/com/android/camera/VideoCamera.java index 010099e..f1f488f 100644 --- a/src/com/android/camera/VideoCamera.java +++ b/src/com/android/camera/VideoCamera.java @@ -1816,6 +1816,14 @@ public class VideoCamera extends ActivityBase public void onPopupWindowVisibilityChanged(final int visibility) { } + + public void onShareButtonClicked() { + mHandler.post(new Runnable() { + public void run() { + VideoCamera.this.onShareButtonClicked(); + } + }); + } } private void onRestorePreferencesClicked() { |
