blob: 38f6c6d334a21bdf3b42de8722a70a9ef3eb9303 [file] [log] [blame]
Angus Kong9ef99252013-07-18 18:04:19 -07001/*
2 * Copyright (C) 2013 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
Angus Kong20fad242013-11-11 18:23:46 -080017package com.android.camera.app;
18
19import com.android.camera.app.AndroidCameraManagerImpl;
20import com.android.camera.app.CameraManager;
Angus Kong9ef99252013-07-18 18:04:19 -070021
22/**
23 * A factory class for {@link CameraManager}.
24 */
25public class CameraManagerFactory {
26
27 private static AndroidCameraManagerImpl sAndroidCameraManager;
28
29 /**
Angus Kong20fad242013-11-11 18:23:46 -080030 * Returns the android camera implementation of {@link com.android.camera.app.CameraManager}.
Angus Kong9ef99252013-07-18 18:04:19 -070031 *
32 * @return The {@link CameraManager} to control the camera device.
33 */
34 public static synchronized CameraManager getAndroidCameraManager() {
35 if (sAndroidCameraManager == null) {
36 sAndroidCameraManager = new AndroidCameraManagerImpl();
37 }
38 return sAndroidCameraManager;
39 }
40}