summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2013-09-17 15:53:06 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-17 15:53:06 -0700
commite7c77157c61fb0e09b5a5eec0b977a3b75f7a6eb (patch)
treef5a89bc4c5d8a5dba41acc8da340c62f866bc24a
parent1b3ffde934ceb9247e319d432d61a81dc6a28ecd (diff)
parent4ee4d99cfc519847bd8f84aca9ece5d2b6519536 (diff)
downloadandroid_packages_apps_Snap-e7c77157c61fb0e09b5a5eec0b977a3b75f7a6eb.tar.gz
android_packages_apps_Snap-e7c77157c61fb0e09b5a5eec0b977a3b75f7a6eb.tar.bz2
android_packages_apps_Snap-e7c77157c61fb0e09b5a5eec0b977a3b75f7a6eb.zip
am 4ee4d99c: Merge "Adding a simple done handler interface." into gb-ub-photos-carlsbad
* commit '4ee4d99cfc519847bd8f84aca9ece5d2b6519536': Adding a simple done handler interface.
-rw-r--r--src/com/android/camera/util/DoneHandler.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/com/android/camera/util/DoneHandler.java b/src/com/android/camera/util/DoneHandler.java
new file mode 100644
index 000000000..4892f26d5
--- /dev/null
+++ b/src/com/android/camera/util/DoneHandler.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2013 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.camera.util;
+
+/**
+ * A simple done-handler interface.
+ */
+public interface DoneHandler {
+ public void onDone();
+}