summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/CombinedBookmarksCallbacks.java
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-08-10 15:53:07 -0700
committerJohn Reck <jreck@google.com>2011-08-11 10:29:45 -0700
commit2d963a2899afbe000d1ab498f94de87f25e33184 (patch)
tree12c78e12a35dd5de8b0673768f25e8fb688d6dfd /src/com/android/browser/CombinedBookmarksCallbacks.java
parente3da7d615be4710da92a79e6ed70dc1982deda4c (diff)
downloadandroid_packages_apps_Gello-2d963a2899afbe000d1ab498f94de87f25e33184.tar.gz
android_packages_apps_Gello-2d963a2899afbe000d1ab498f94de87f25e33184.tar.bz2
android_packages_apps_Gello-2d963a2899afbe000d1ab498f94de87f25e33184.zip
Support horizontal swipe in combo activity
Bug: 5145315 Change-Id: I1e9b4a6bae325244c7a3fb6159deadc3fcf170e6
Diffstat (limited to 'src/com/android/browser/CombinedBookmarksCallbacks.java')
-rw-r--r--src/com/android/browser/CombinedBookmarksCallbacks.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/com/android/browser/CombinedBookmarksCallbacks.java b/src/com/android/browser/CombinedBookmarksCallbacks.java
new file mode 100644
index 00000000..cdffb6bf
--- /dev/null
+++ b/src/com/android/browser/CombinedBookmarksCallbacks.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.browser;
+
+public interface CombinedBookmarksCallbacks {
+ void openUrl(String url);
+ void openInNewTab(String... urls);
+ void openSnapshot(long id);
+ void close();
+} \ No newline at end of file