Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7492b988 authored by Darrell Shi's avatar Darrell Shi Committed by Android (Google) Code Review
Browse files

Merge "Fix typo in comment and logging (dream -> communal)." into main

parents a44531d9 dbe36edb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ import java.util.concurrent.Executor
import javax.inject.Inject
import javax.inject.Named

/** Controller for managing the smartspace view on the dream */
/** Controller for managing the smartspace view on the glanceable hub */
@SysUISingleton
class CommunalSmartspaceController
@Inject
@@ -125,7 +125,7 @@ constructor(
            smartspaceManager.createSmartspaceSession(
                SmartspaceConfig.Builder(context, UI_SURFACE_GLANCEABLE_HUB).build()
            )
        Log.d(TAG, "Starting smartspace session for dream")
        Log.d(TAG, "Starting smartspace session for communal")
        newSession.addOnTargetsAvailableListener(uiExecutor, sessionListener)
        this.session = newSession

@@ -153,7 +153,7 @@ constructor(

        plugin?.registerSmartspaceEventNotifier(null)
        plugin?.onTargetsAvailable(emptyList())
        Log.d(TAG, "Ending smartspace session for dream")
        Log.d(TAG, "Ending smartspace session for communal")
    }

    fun addListener(listener: SmartspaceTargetListener) {