Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Unified Diff: testing/android/native_test/native_test_jni_onload.cc

Issue 1143903002: [Android] Refactor the native test wrappers. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/android/native_test/native_test_jni_onload.cc
diff --git a/testing/android/native_test/native_test_jni_onload.cc b/testing/android/native_test/native_test_jni_onload.cc
index 041aa7430ef34de5a377c68993c0e9e0f42a4681..8fecc444c0ecd306abadfbc323ba02c80aea3269 100644
--- a/testing/android/native_test/native_test_jni_onload.cc
+++ b/testing/android/native_test/native_test_jni_onload.cc
@@ -10,11 +10,11 @@
namespace {
bool RegisterJNI(JNIEnv* env) {
- return RegisterNativeTestJNI(env);
+ return testing::android::RegisterNativeTestJNI(env);
}
bool Init() {
- InstallHandlers();
+ testing::android::InstallHandlers();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698