author | Wes Johnston <wjohnston@mozilla.com> |
Thu, 06 Mar 2014 12:57:42 -0800 | |
changeset 172456 | e67fd6177febf8caac45e43b5ac6f54c891a076d |
parent 172455 | 00a76d6b935cf4e567f0fbbfc8705ad5c25ca9a5 |
child 172457 | 082bae16fc331bf08d0c475b5ff416f5245a037e |
push id | 26360 |
push user | cbook@mozilla.com |
push date | Fri, 07 Mar 2014 12:07:11 +0000 |
treeherder | mozilla-central@0dc1be930880 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | rewman |
bugs | 942611 |
milestone | 30.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/mobile/android/base/GeckoApp.java +++ b/mobile/android/base/GeckoApp.java @@ -2055,17 +2055,17 @@ public abstract class GeckoApp SharedPreferences.Editor editor = prefs.edit(); editor.putBoolean(GeckoApp.PREFS_WAS_STOPPED, true); if (rec != null) { rec.recordSessionEnd("P", editor); } // If we haven't done it before, cleanup any old files in our old temp dir if (prefs.getBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, true)) { - File tempDir = GeckoLoader.getGREDir(this); + File tempDir = GeckoLoader.getGREDir(GeckoApp.this); FileUtils.delTree(tempDir, new FileUtils.NameAndAgeFilter(null, ONE_DAY_MS), false); editor.putBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, false); } editor.commit(); // In theory, the first browser session will not run long enough that we need to