summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGeorge Lin <giolin@google.com>2023-10-09 13:35:31 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-10-09 13:35:31 +0000
commitdfa0a60a939bc45e375c9127d8b907f9fe02541b (patch)
tree1150062dfeb6ebbdd094739934bd3eac2d2382d1 /tests
parentb7823df396e830a7f47eabc3c70b8bb76a138169 (diff)
parent936a02ec64bbfcfbf13df9b40b141d322403f9dc (diff)
downloadThemePicker-dfa0a60a939bc45e375c9127d8b907f9fe02541b.tar.gz
Merge "Modify theme color applied log" into main
Diffstat (limited to 'tests')
-rw-r--r--tests/common/src/com/android/customization/module/logging/TestThemesUserEventLogger.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common/src/com/android/customization/module/logging/TestThemesUserEventLogger.kt b/tests/common/src/com/android/customization/module/logging/TestThemesUserEventLogger.kt
index b2835f45..a8989c59 100644
--- a/tests/common/src/com/android/customization/module/logging/TestThemesUserEventLogger.kt
+++ b/tests/common/src/com/android/customization/module/logging/TestThemesUserEventLogger.kt
@@ -15,14 +15,14 @@
*/
package com.android.customization.module.logging
-import com.android.customization.model.color.ColorOption
import com.android.customization.model.grid.GridOption
+import com.android.customization.module.logging.ThemesUserEventLogger.ColorSource
import com.android.wallpaper.module.logging.TestUserEventLogger
/** Test implementation of [ThemesUserEventLogger]. */
class TestThemesUserEventLogger : TestUserEventLogger(), ThemesUserEventLogger {
- override fun logThemeColorApplied(colorOption: ColorOption) {}
+ override fun logThemeColorApplied(@ColorSource source: Int, variant: Int, seedColor: Int) {}
override fun logGridApplied(grid: GridOption) {}