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

Unified Diff: base/android/java/src/org/chromium/base/PathUtils.java

Issue 2262453002: Cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix stuff. Created 4 years, 4 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: base/android/java/src/org/chromium/base/PathUtils.java
diff --git a/base/android/java/src/org/chromium/base/PathUtils.java b/base/android/java/src/org/chromium/base/PathUtils.java
index c3d3e7e1348b7522fa24464de5282bf62fa66756..8a28df52d6ddf7fb35d27067acba9aa169ce9b12 100644
--- a/base/android/java/src/org/chromium/base/PathUtils.java
+++ b/base/android/java/src/org/chromium/base/PathUtils.java
@@ -34,13 +34,9 @@ public abstract class PathUtils {
private static final AtomicBoolean sInitializationStarted = new AtomicBoolean();
private static AsyncTask<Void, Void, String[]> sDirPathFetchTask;
- // In setPrivateDataDirectorySuffix(), we store the app's context. If the AsyncTask started in
- // setPrivateDataDirectorySuffix() fails to complete by the time we need the values, we will
- // need the context so that we can restart the task synchronously on the UI thread.
- private static Context sDataDirectoryAppContext;
-
- // We also store the directory path suffix from setPrivateDataDirectorySuffix() for the same
- // reason as above.
+ // If the AsyncTask started in setPrivateDataDirectorySuffix() fails to complete by the time we
+ // need the values, we will need the suffix so that we can restart the task synchronously on
+ // the UI thread.
private static String sDataDirectorySuffix;
// Prevent instantiation.
@@ -101,13 +97,14 @@ public abstract class PathUtils {
*/
private static String[] setPrivateDataDirectorySuffixInternal() {
String[] paths = new String[NUM_DIRECTORIES];
- paths[DATA_DIRECTORY] = sDataDirectoryAppContext.getDir(sDataDirectorySuffix,
+ Context appContext = ContextUtils.getApplicationContext();
+ paths[DATA_DIRECTORY] = appContext.getDir(sDataDirectorySuffix,
Context.MODE_PRIVATE).getPath();
- paths[THUMBNAIL_DIRECTORY] = sDataDirectoryAppContext.getDir(
+ paths[THUMBNAIL_DIRECTORY] = appContext.getDir(
THUMBNAIL_DIRECTORY_NAME, Context.MODE_PRIVATE).getPath();
- paths[DATABASE_DIRECTORY] = sDataDirectoryAppContext.getDatabasePath("foo").getParent();
- if (sDataDirectoryAppContext.getCacheDir() != null) {
- paths[CACHE_DIRECTORY] = sDataDirectoryAppContext.getCacheDir().getPath();
+ paths[DATABASE_DIRECTORY] = appContext.getDatabasePath("foo").getParent();
+ if (appContext.getCacheDir() != null) {
+ paths[CACHE_DIRECTORY] = appContext.getCacheDir().getPath();
}
return paths;
}
@@ -124,12 +121,11 @@ public abstract class PathUtils {
* @param suffix The private data directory suffix.
* @see Context#getDir(String, int)
*/
- public static void setPrivateDataDirectorySuffix(String suffix, Context context) {
+ public static void setPrivateDataDirectorySuffix(String suffix) {
// This method should only be called once, but many tests end up calling it multiple times,
// so adding a guard here.
if (!sInitializationStarted.getAndSet(true)) {
sDataDirectorySuffix = suffix;
- sDataDirectoryAppContext = context.getApplicationContext();
sDirPathFetchTask = new AsyncTask<Void, Void, String[]>() {
@Override
protected String[] doInBackground(Void... unused) {
@@ -151,7 +147,7 @@ public abstract class PathUtils {
* @return the private directory that is used to store application data.
*/
@CalledByNative
- public static String getDataDirectory(Context appContext) {
+ public static String getDataDirectory() {
assert sDirPathFetchTask != null : "setDataDirectorySuffix must be called first.";
return getDirectoryPath(DATA_DIRECTORY);
}
@@ -160,7 +156,7 @@ public abstract class PathUtils {
* @return the private directory that is used to store application database.
*/
@CalledByNative
- public static String getDatabaseDirectory(Context appContext) {
+ public static String getDatabaseDirectory() {
assert sDirPathFetchTask != null : "setDataDirectorySuffix must be called first.";
return getDirectoryPath(DATABASE_DIRECTORY);
}
@@ -168,15 +164,14 @@ public abstract class PathUtils {
/**
* @return the cache directory.
*/
- @SuppressWarnings("unused")
@CalledByNative
- public static String getCacheDirectory(Context appContext) {
+ public static String getCacheDirectory() {
assert sDirPathFetchTask != null : "setDataDirectorySuffix must be called first.";
return getDirectoryPath(CACHE_DIRECTORY);
}
@CalledByNative
- public static String getThumbnailCacheDirectory(Context appContext) {
+ public static String getThumbnailCacheDirectory() {
assert sDirPathFetchTask != null : "setDataDirectorySuffix must be called first.";
return getDirectoryPath(THUMBNAIL_DIRECTORY);
}
@@ -184,9 +179,8 @@ public abstract class PathUtils {
/**
* @return the public downloads directory.
*/
- @SuppressWarnings("unused")
@CalledByNative
- private static String getDownloadsDirectory(Context appContext) {
+ private static String getDownloadsDirectory() {
// Temporarily allowing disk access while fixing. TODO: http://crbug.com/508615
StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
String downloadsPath;
@@ -205,10 +199,9 @@ public abstract class PathUtils {
/**
* @return the path to native libraries.
*/
- @SuppressWarnings("unused")
@CalledByNative
- private static String getNativeLibraryDirectory(Context appContext) {
- ApplicationInfo ai = appContext.getApplicationInfo();
+ private static String getNativeLibraryDirectory() {
+ ApplicationInfo ai = ContextUtils.getApplicationContext().getApplicationInfo();
if ((ai.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0
|| (ai.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
return ai.nativeLibraryDir;
@@ -220,7 +213,6 @@ public abstract class PathUtils {
/**
* @return the external storage directory.
*/
- @SuppressWarnings("unused")
@CalledByNative
public static String getExternalStorageDirectory() {
return Environment.getExternalStorageDirectory().getAbsolutePath();

Powered by Google App Engine
This is Rietveld 408576698