summaryrefslogtreecommitdiffstats
path: root/tests/unit/screen_ui_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-10-23 19:54:02 +0200
committerTao Bao <tbao@google.com>2018-10-23 19:56:54 +0200
commit65815b6d3a67cf07a01f28fb9ecb7bf05049754b (patch)
treebd2885d5234932bca8abe85db54f4bb5d44cb3ff /tests/unit/screen_ui_test.cpp
parentMerge "minui: Move GRSurface into a class." (diff)
downloadandroid_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar.gz
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar.bz2
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar.lz
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar.xz
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.tar.zst
android_bootable_recovery-65815b6d3a67cf07a01f28fb9ecb7bf05049754b.zip
Diffstat (limited to '')
-rw-r--r--tests/unit/screen_ui_test.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/unit/screen_ui_test.cpp b/tests/unit/screen_ui_test.cpp
index ec269503e..130a6c161 100644
--- a/tests/unit/screen_ui_test.cpp
+++ b/tests/unit/screen_ui_test.cpp
@@ -42,26 +42,26 @@ static const std::vector<std::string> ITEMS{ "item1", "item2", "item3", "item4",
class MockDrawFunctions : public DrawInterface {
void SetColor(UIElement /* element */) const override {}
void DrawHighlightBar(int /* x */, int /* y */, int /* width */,
- int /* height */) const override {};
+ int /* height */) const override {}
int DrawHorizontalRule(int /* y */) const override {
return 0;
- };
+ }
int DrawTextLine(int /* x */, int /* y */, const std::string& /* line */,
bool /* bold */) const override {
return 0;
- };
- void DrawSurface(GRSurface* /* surface */, int /* sx */, int /* sy */, int /* w */, int /* h */,
- int /* dx */, int /* dy */) const override {};
- void DrawFill(int /* x */, int /* y */, int /* w */, int /* h */) const override {};
- void DrawTextIcon(int /* x */, int /* y */, GRSurface* /* surface */) const override {};
+ }
+ void DrawSurface(const GRSurface* /* surface */, int /* sx */, int /* sy */, int /* w */,
+ int /* h */, int /* dx */, int /* dy */) const override {}
+ void DrawFill(int /* x */, int /* y */, int /* w */, int /* h */) const override {}
+ void DrawTextIcon(int /* x */, int /* y */, const GRSurface* /* surface */) const override {}
int DrawTextLines(int /* x */, int /* y */,
const std::vector<std::string>& /* lines */) const override {
return 0;
- };
+ }
int DrawWrappedTextLines(int /* x */, int /* y */,
const std::vector<std::string>& /* lines */) const override {
return 0;
- };
+ }
};
class ScreenUITest : public testing::Test {