• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2024 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 
17 package com.android.systemui.shade.data.repository
18 
19 import android.view.Display
20 import com.android.systemui.shade.display.FakeShadeDisplayPolicy
21 import com.android.systemui.shade.display.ShadeDisplayPolicy
22 import kotlinx.coroutines.flow.MutableStateFlow
23 import kotlinx.coroutines.flow.StateFlow
24 
25 class FakeShadeDisplayRepository : MutableShadeDisplaysRepository {
26     private val _displayId = MutableStateFlow(Display.DEFAULT_DISPLAY)
27     private val _pendingDisplayId = MutableStateFlow(Display.DEFAULT_DISPLAY)
28 
setDisplayIdnull29     fun setDisplayId(displayId: Int) {
30         _displayId.value = displayId
31     }
32 
setPendingDisplayIdnull33     fun setPendingDisplayId(displayId: Int) {
34         _pendingDisplayId.value = displayId
35     }
36 
onDisplayChangedSucceedednull37     override fun onDisplayChangedSucceeded(displayId: Int) {
38         setDisplayId(displayId)
39     }
40 
41     override val displayId: StateFlow<Int>
42         get() = _displayId
43 
44     override val pendingDisplayId: StateFlow<Int>
45         get() = _pendingDisplayId
46 
47     override val currentPolicy: ShadeDisplayPolicy
48         get() = FakeShadeDisplayPolicy
49 }
50