From d4d4c2456ac6649f65fd561998b2cb8eb2c97edd Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 29 Dec 2014 12:46:43 -0800 Subject: Fix missing #includes in bootable/recovery. Change-Id: I58dfbac6ca1aa80d3659f53a8fad1bbbbdc9b941 --- verifier_test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'verifier_test.cpp') diff --git a/verifier_test.cpp b/verifier_test.cpp index 10a5ddaad..e2f3d105c 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -14,12 +14,13 @@ * limitations under the License. */ +#include +#include +#include #include #include -#include #include #include -#include #include "common.h" #include "verifier.h" -- cgit v1.2.3 From e01d9de9816e71e333d4c94c6edcb06752236656 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Sat, 24 Jan 2015 22:21:24 -0800 Subject: Add missing include. Change-Id: I79a9a58904b2992c306d8de0c7b3a4aacd4b67e0 --- verifier_test.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'verifier_test.cpp') diff --git a/verifier_test.cpp b/verifier_test.cpp index e2f3d105c..93a071e37 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include #include -- cgit v1.2.3 From 8de52078a42882873322b19becb42612f7708b54 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 8 Apr 2015 20:06:50 -0700 Subject: Move file paging into ScreenRecoveryUI. This fixes the N9 performance problem. Change-Id: I00c10d4162ff266a6243285e5a5e768217f6f799 --- verifier_test.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'verifier_test.cpp') diff --git a/verifier_test.cpp b/verifier_test.cpp index 93a071e37..82546edce 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -124,6 +124,8 @@ RecoveryUI* ui = NULL; // nothing but print. class FakeUI : public RecoveryUI { void Init() { } + void SetStage(int, int) { } + void SetLocale(const char*) { } void SetBackground(Icon icon) { } void SetProgressType(ProgressType determinate) { } @@ -139,6 +141,7 @@ class FakeUI : public RecoveryUI { vfprintf(stderr, fmt, ap); va_end(ap); } + void ShowFile(const char*) { } void StartMenu(const char* const * headers, const char* const * items, int initial_selection) { } -- cgit v1.2.3