author | Michael Comella <michael.l.comella@gmail.com> |
Thu, 24 Mar 2016 14:10:56 -0700 | |
changeset 290350 | 5e287404e4f8fd81330cd704e42fba5e3baa5f49 |
parent 290349 | aadf5e15faf8ba88b48d16bb396f115816b8f673 |
child 290351 | ab10aef83718f44aa6d12efb95ae263b888c8dce |
push id | 30118 |
push user | ryanvm@gmail.com |
push date | Fri, 25 Mar 2016 15:37:11 +0000 |
treeherder | mozilla-central@b2dbee5ca727 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1256427 |
milestone | 48.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/java/org/mozilla/gecko/dlc/catalog/DownloadContentCatalog.java +++ b/mobile/android/base/java/org/mozilla/gecko/dlc/catalog/DownloadContentCatalog.java @@ -1,17 +1,17 @@ /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mozilla.gecko.dlc.catalog; import android.content.Context; -import android.util.AtomicFile; +import android.support.v4.util.AtomicFile; import android.util.Log; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.io.File; import java.io.FileNotFoundException;
--- a/mobile/android/base/java/org/mozilla/gecko/push/PushState.java +++ b/mobile/android/base/java/org/mozilla/gecko/push/PushState.java @@ -3,17 +3,17 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mozilla.gecko.push; import android.content.Context; import android.support.annotation.NonNull; import android.support.annotation.WorkerThread; -import android.util.AtomicFile; +import android.support.v4.util.AtomicFile; import android.util.Log; import org.json.JSONException; import org.json.JSONObject; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream;
--- a/mobile/android/tests/background/junit4/src/org/mozilla/gecko/dlc/catalog/TestDownloadContentCatalog.java +++ b/mobile/android/tests/background/junit4/src/org/mozilla/gecko/dlc/catalog/TestDownloadContentCatalog.java @@ -1,16 +1,16 @@ /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mozilla.gecko.dlc.catalog; -import android.util.AtomicFile; +import android.support.v4.util.AtomicFile; import org.junit.Assert; import org.junit.Assume; import org.junit.Test; import org.junit.runner.RunWith; import org.mozilla.gecko.AppConstants; import org.mozilla.gecko.background.testhelpers.TestRunner;