Andrew Top | 0d1858f | 2019-05-15 22:01:47 -0700 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_ |
| 6 | #define BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_ |
| 7 | |
| 8 | #include <jni.h> |
| 9 | |
| 10 | #include <memory> |
| 11 | |
| 12 | #include "base/android/scoped_java_ref.h" |
| 13 | #include "starboard/types.h" |
| 14 | |
| 15 | namespace base { |
| 16 | |
| 17 | class WaitableEvent; |
| 18 | |
| 19 | namespace android { |
| 20 | |
| 21 | class JavaHandlerThread; |
| 22 | |
| 23 | // Test-only helpers for working with JavaHandlerThread. |
| 24 | class JavaHandlerThreadHelpers { |
| 25 | public: |
| 26 | // Create the Java peer first and test that it works before connecting to the |
| 27 | // native object. |
| 28 | static std::unique_ptr<JavaHandlerThread> CreateJavaFirst(); |
| 29 | |
| 30 | static void ThrowExceptionAndAbort(WaitableEvent* event); |
| 31 | |
| 32 | static bool IsExceptionTestException( |
| 33 | ScopedJavaLocalRef<jthrowable> exception); |
| 34 | |
| 35 | private: |
| 36 | JavaHandlerThreadHelpers() = default; |
| 37 | ~JavaHandlerThreadHelpers() = default; |
| 38 | }; |
| 39 | |
| 40 | } // namespace android |
| 41 | } // namespace base |
| 42 | |
| 43 | #endif // BASE_ANDROID_JAVA_HANDLER_THREAD_FOR_TESTING_H_ |