summaryrefslogtreecommitdiffstats
path: root/src/com/android/photos/drawables
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2013-03-08 11:19:27 -0800
committerJohn Reck <jreck@google.com>2013-03-08 11:22:33 -0800
commit0d84f476ed24922864f39d54e09274f6feac085e (patch)
treee2f869a31eb1499a87d2517ae03e6ba6d0204406 /src/com/android/photos/drawables
parent75f1d6c7f6d9cb32187ff7d1bc443916c496e38a (diff)
downloadandroid_packages_apps_Snap-0d84f476ed24922864f39d54e09274f6feac085e.tar.gz
android_packages_apps_Snap-0d84f476ed24922864f39d54e09274f6feac085e.tar.bz2
android_packages_apps_Snap-0d84f476ed24922864f39d54e09274f6feac085e.zip
Support clicking on photos to view them
Change-Id: I511af0cbe46c833d81cbbd563b9c2b4feec2bffe
Diffstat (limited to 'src/com/android/photos/drawables')
-rw-r--r--src/com/android/photos/drawables/DrawableFactory.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/com/android/photos/drawables/DrawableFactory.java b/src/com/android/photos/drawables/DrawableFactory.java
deleted file mode 100644
index ad046c820..000000000
--- a/src/com/android/photos/drawables/DrawableFactory.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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.photos.drawables;
-
-import android.graphics.drawable.Drawable;
-
-
-public interface DrawableFactory<T> {
- Drawable drawableForItem(T item, Drawable recycle);
-}