| // Copyright 2017 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "base/test/android/url_utils.h" |
| |
| #include "base/android/jni_string.h" |
| #include "base/android/scoped_java_ref.h" |
| |
| // Must come after all headers that specialize FromJniType() / ToJniType(). |
| #include "base/test/test_support_jni_headers/UrlUtils_jni.h" |
| |
| namespace base { |
| namespace android { |
| |
| FilePath GetIsolatedTestRoot() { |
| JNIEnv* env = jni_zero::AttachCurrentThread(); |
| std::string jtest_data_dir = Java_UrlUtils_getIsolatedTestRoot(env); |
| base::FilePath test_data_dir(jtest_data_dir); |
| return test_data_dir; |
| } |
| |
| } // namespace android |
| } // namespace base |