blob: 01921f0d9a60f49c88c52f12310422b120ae6670 [file] [log] [blame]
Dave Mankoffdde5ee62019-05-02 17:36:11 -04001/*
2 * Copyright (C) 2015 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.systemui.classifier;
18
19import android.content.Context;
Dave Mankoffdde5ee62019-05-02 17:36:11 -040020
Dave Mankoff468d4f62019-05-08 14:56:29 -040021import com.android.systemui.Dependency;
22import com.android.systemui.plugins.FalsingManager;
Dave Mankoffdde5ee62019-05-02 17:36:11 -040023
24/**
25 * When the phone is locked, listens to touch, sensor and phone events and sends them to
26 * DataCollector and HumanInteractionClassifier.
27 *
28 * It does not collect touch events when the bouncer shows up.
Dave Mankoff468d4f62019-05-08 14:56:29 -040029 *
30 * TODO: FalsingManager supports dependency injection. Use it.
Dave Mankoffdde5ee62019-05-02 17:36:11 -040031 */
32public class FalsingManagerFactory {
33 private static FalsingManager sInstance = null;
34
35 private FalsingManagerFactory() {}
36
37 public static FalsingManager getInstance(Context context) {
38 if (sInstance == null) {
Dave Mankoff468d4f62019-05-08 14:56:29 -040039 sInstance = Dependency.get(FalsingManager.class);
Dave Mankoffdde5ee62019-05-02 17:36:11 -040040 }
41 return sInstance;
42 }
43
Dave Mankoffdde5ee62019-05-02 17:36:11 -040044}