1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.gallery3d.util;
18
19import android.content.ContentResolver;
20import android.content.Context;
21import android.net.Uri;
22
23public class LightCycleHelper {
24    public static class PanoramaMetadata {
25        // Whether a panorama viewer should be used
26        public final boolean mUsePanoramaViewer;
27        // Whether a panorama is 360 degrees
28        public final boolean mIsPanorama360;
29
30        public PanoramaMetadata(boolean usePanoramaViewer, boolean isPanorama360) {
31            mUsePanoramaViewer = usePanoramaViewer;
32            mIsPanorama360 = isPanorama360;
33        }
34    }
35
36    public static final PanoramaMetadata NOT_PANORAMA = new PanoramaMetadata(false, false);
37
38    public static PanoramaMetadata getPanoramaMetadata(Context context, Uri uri) {
39        return NOT_PANORAMA;
40    }
41
42    /**
43     * Get the file path from a Media storage URI.
44     */
45    public static String getPathFromURI(ContentResolver contentResolver, Uri contentUri) {
46        return null;
47    }
48
49    /**
50     * Get the modified time from a Media storage URI.
51     */
52    public static long getModifiedTimeFromURI(ContentResolver contentResolver, Uri contentUri) {
53        return 0;
54    }
55}
56