Index: base/android/path_utils.cc |
diff --git a/base/android/path_utils.cc b/base/android/path_utils.cc |
index 85e29de8bfa3982ca0569477454b4ee005fe61fa..b76544949ed4fa20ffaecb79fda9ff957be37f36 100644 |
--- a/base/android/path_utils.cc |
+++ b/base/android/path_utils.cc |
@@ -45,8 +45,7 @@ bool GetCacheDirectory(FilePath* result) { |
bool GetThumbnailCacheDirectory(FilePath* result) { |
JNIEnv* env = AttachCurrentThread(); |
ScopedJavaLocalRef<jstring> path = |
- Java_PathUtils_getThumbnailCacheDirectoryPath(env, |
- GetApplicationContext()); |
+ Java_PathUtils_getThumbnailCacheDirectory(env, GetApplicationContext()); |
FilePath thumbnail_cache_path(ConvertJavaStringToUTF8(path)); |
*result = thumbnail_cache_path; |
return true; |