summaryrefslogtreecommitdiff
path: root/tests/src/com/android/customization/testing/TestThemesUserEventLogger.java
blob: 9969e6e839cabc630611c63011140094dc5a066e (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
package com.android.customization.testing;

import com.android.customization.model.clock.Clockface;
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, int colorIndex) {
        // 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.
    }
}