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

Unified Diff: base/base_paths_android.cc

Issue 10663039: Add Java function to retrieve the native library dir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
« no previous file with comments | « base/android/path_utils_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base_paths_android.cc
diff --git a/base/base_paths_android.cc b/base/base_paths_android.cc
index 9d04b764df03b667481518c0b83e2e3bb542b8df..3b5a7b7edb3ef0fc5b93aeef5d8d71f8755f4147 100644
--- a/base/base_paths_android.cc
+++ b/base/base_paths_android.cc
@@ -37,8 +37,7 @@ bool PathProviderAndroid(int key, FilePath* result) {
NOTIMPLEMENTED();
return false;
case base::DIR_MODULE: {
- *result = FilePath(base::android::GetDataDirectory()).DirName()
- .Append("lib");
+ *result = FilePath(base::android::GetNativeLibraryDirectory());
Mark Mentovai 2012/07/02 18:10:16 LGTM
return true;
}
case base::DIR_SOURCE_ROOT:
« no previous file with comments | « base/android/path_utils_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698