From abe80cc31d5a40ebed743085011fbcda0c1a9a10 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Tue, 23 Apr 2019 15:32:23 -0400 Subject: Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android --- .../db/AbstractPerProfileDatabaseProvider.java | 79 ---------------------- 1 file changed, 79 deletions(-) delete mode 100644 mobile/android/base/java/org/mozilla/gecko/db/AbstractPerProfileDatabaseProvider.java (limited to 'mobile/android/base/java/org/mozilla/gecko/db/AbstractPerProfileDatabaseProvider.java') diff --git a/mobile/android/base/java/org/mozilla/gecko/db/AbstractPerProfileDatabaseProvider.java b/mobile/android/base/java/org/mozilla/gecko/db/AbstractPerProfileDatabaseProvider.java deleted file mode 100644 index 2e056cc1e..000000000 --- a/mobile/android/base/java/org/mozilla/gecko/db/AbstractPerProfileDatabaseProvider.java +++ /dev/null @@ -1,79 +0,0 @@ -/* 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.db; - -import org.mozilla.gecko.annotation.RobocopTarget; - -import android.database.sqlite.SQLiteDatabase; -import android.database.sqlite.SQLiteOpenHelper; -import android.net.Uri; - -/** - * The base class for ContentProviders that wish to use a different DB - * for each profile. - * - * This class has logic shared between ordinary per-profile CPs and - * those that wish to share DB connections between CPs. - */ -public abstract class AbstractPerProfileDatabaseProvider extends AbstractTransactionalProvider { - - /** - * Extend this to provide access to your own map of shared databases. This - * is a method so that your subclass doesn't collide with others! - */ - protected abstract PerProfileDatabases getDatabases(); - - /* - * Fetches a readable database based on the profile indicated in the - * passed URI. If the URI does not contain a profile param, the default profile - * is used. - * - * @param uri content URI optionally indicating the profile of the user - * @return instance of a readable SQLiteDatabase - */ - @Override - protected SQLiteDatabase getReadableDatabase(Uri uri) { - String profile = null; - if (uri != null) { - profile = uri.getQueryParameter(BrowserContract.PARAM_PROFILE); - } - - return getDatabases().getDatabaseHelperForProfile(profile, isTest(uri)).getReadableDatabase(); - } - - /* - * Fetches a writable database based on the profile indicated in the - * passed URI. If the URI does not contain a profile param, the default profile - * is used - * - * @param uri content URI optionally indicating the profile of the user - * @return instance of a writable SQLiteDatabase - */ - @Override - protected SQLiteDatabase getWritableDatabase(Uri uri) { - String profile = null; - if (uri != null) { - profile = uri.getQueryParameter(BrowserContract.PARAM_PROFILE); - } - - return getDatabases().getDatabaseHelperForProfile(profile, isTest(uri)).getWritableDatabase(); - } - - protected SQLiteDatabase getWritableDatabaseForProfile(String profile, boolean isTest) { - return getDatabases().getDatabaseHelperForProfile(profile, isTest).getWritableDatabase(); - } - - /** - * This method should ONLY be used for testing purposes. - * - * @param uri content URI optionally indicating the profile of the user - * @return instance of a writable SQLiteDatabase - */ - @Override - @RobocopTarget - public SQLiteDatabase getWritableDatabaseForTesting(Uri uri) { - return getWritableDatabase(uri); - } -} -- cgit v1.2.3