summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/actionbar/SimpleActionMode.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/actionbar/SimpleActionMode.java')
-rw-r--r--src/com/android/gallery3d/actionbar/SimpleActionMode.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/com/android/gallery3d/actionbar/SimpleActionMode.java b/src/com/android/gallery3d/actionbar/SimpleActionMode.java
deleted file mode 100644
index 33733d173..000000000
--- a/src/com/android/gallery3d/actionbar/SimpleActionMode.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package com.android.gallery3d.actionbar;
-
-import android.content.Intent;
-import android.view.View;
-
-public class SimpleActionMode implements ActionModeInterface {
-
- @Override
- public void setMenuItemVisible(int menuItemId, boolean visible) {
- }
-
- @Override
- public void setMenuItemTitle(int menuItemId, String title) {
- }
-
- @Override
- public void setMenuItemIntent(int menuItemId, Intent intent) {
- }
-
- @Override
- public void inflateMenu(int operation) {
- }
-
- @Override
- public void setCustomView(View view) {
- }
-
- @Override
- public void finish() {
- }
-
- @Override
- public void setShareIntent(Intent intent) {
- }
-
- @Override
- public boolean hasShareButton() {
- return false;
- }
-
- @Override
- public void setOnShareTargetSelectedListener(OnShareTargetSelectedListener listener) {
- }
-}