blob: 9250a86899b438bd7f69460e6dd323c2225599d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package com.android.customization.testing;
import com.android.customization.model.clock.Clockface;
import com.android.customization.model.color.ColorOption;
import com.android.customization.model.grid.GridOption;
import com.android.customization.model.theme.ThemeBundle;
import com.android.customization.module.ThemesUserEventLogger;
import com.android.wallpaper.testing.TestUserEventLogger;
/**
* Test implementation of {@link ThemesUserEventLogger}.
*/
public class TestThemesUserEventLogger extends TestUserEventLogger
implements ThemesUserEventLogger {
@Override
public void logThemeSelected(ThemeBundle theme, boolean isCustomTheme) {
// Do nothing.
}
@Override
public void logThemeApplied(ThemeBundle theme, boolean isCustomTheme) {
// Do nothing.
}
@Override
public void logColorApplied(int action, ColorOption colorOption) {
// Do nothing.
}
@Override
public void logClockSelected(Clockface clock) {
// Do nothing.
}
@Override
public void logClockApplied(Clockface clock) {
// Do nothing.
}
@Override
public void logGridSelected(GridOption grid) {
// Do nothing.
}
@Override
public void logGridApplied(GridOption grid) {
// Do nothing.
}
}
|