103e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling/*
203e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * Copyright (C) 2013 The Android Open Source Project
303e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling *
403e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * Licensed under the Apache License, Version 2.0 (the "License");
503e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * you may not use this file except in compliance with the License.
603e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * You may obtain a copy of the License at
703e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling *
803e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling *      http://www.apache.org/licenses/LICENSE-2.0
903e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling *
1003e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * Unless required by applicable law or agreed to in writing, software
1103e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * distributed under the License is distributed on an "AS IS" BASIS,
1203e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1303e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * See the License for the specific language governing permissions and
1403e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling * limitations under the License.
1503e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling */
1603e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling
1703e0145861f790b633118dfc1d53ff89160c193aSascha Haeberlingpackage com.android.camera.util;
1803e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling
1903e0145861f790b633118dfc1d53ff89160c193aSascha Haeberlingimport android.content.Context;
207a9c4d1eb69bd33ec8fa0273a4da578327e98c89Carlos Hernandezimport android.net.Uri;
2103e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling
2203e0145861f790b633118dfc1d53ff89160c193aSascha Haeberlingimport com.android.camera.CameraModule;
23c4e665625b88a8363fa2bd9848bf88ec9b45637fAngus Kongimport com.android.camera.app.AppController;
24280fd3edae1dc35ac1015bcc9532477169fad3aaSascha Haeberlingimport com.android.camera.app.CameraServices;
2503e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling
2603e0145861f790b633118dfc1d53ff89160c193aSascha Haeberlingpublic class RefocusHelper {
27c4e665625b88a8363fa2bd9848bf88ec9b45637fAngus Kong    public static CameraModule createRefocusModule(AppController app) {
2803e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling        return null;
2903e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling    }
3003e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling
3103e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling    public static boolean hasRefocusCapture(Context context) {
3203e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling        return false;
3303e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling    }
3477377ad618ccedeeecdff880f73780605d7c0d9eCarlos Hernandez
3577377ad618ccedeeecdff880f73780605d7c0d9eCarlos Hernandez    public static boolean isRGBZ(Context context, Uri contentUri) {
3677377ad618ccedeeecdff880f73780605d7c0d9eCarlos Hernandez        return false;
3777377ad618ccedeeecdff880f73780605d7c0d9eCarlos Hernandez    }
3803e0145861f790b633118dfc1d53ff89160c193aSascha Haeberling}
39