summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
author Liana Kazanova <lkazanova@google.com> 2023-04-07 22:38:24 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-04-07 22:38:24 +0000
commitd1614650f2b1cacbfd45520ed12e229c87bf0ea3 (patch)
treeb42b92b1ec7abf0ed7652cde5432259e24bcc363 /java/src
parenta36c4deb98e45aa0994b3f5fe2937fb112d03451 (diff)
parent35ea80ec66daa4df6e77766571c29a651c4db8f0 (diff)
Merge "Revert "Adds a reciever for pin migration data"" into udc-dev
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/intentresolver/ChooserPinMigrationReceiver.kt55
1 files changed, 0 insertions, 55 deletions
diff --git a/java/src/com/android/intentresolver/ChooserPinMigrationReceiver.kt b/java/src/com/android/intentresolver/ChooserPinMigrationReceiver.kt
deleted file mode 100644
index a3ba2192..00000000
--- a/java/src/com/android/intentresolver/ChooserPinMigrationReceiver.kt
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2023 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.intentresolver
-
-import android.content.BroadcastReceiver
-import android.content.Context
-import android.content.Intent
-import android.content.SharedPreferences
-import android.util.Log
-
-/**
- * Broadcast receiver for receiving Chooser pin data from the legacy chooser.
- *
- * Unions the legacy pins with any existing pins. This receiver is protected by the ADD_CHOOSER_PINS
- * permission. The receiver is required to have the RECEIVE_CHOOSER_PIN_MIGRATION to receive the
- * broadcast.
- */
-class ChooserPinMigrationReceiver(
- private val pinnedSharedPrefsProvider: (Context) -> SharedPreferences =
- { context -> ChooserActivity.getPinnedSharedPrefs(context) },
-) : BroadcastReceiver() {
-
- override fun onReceive(context: Context, intent: Intent) {
- val bundle = intent.extras ?: return
- Log.i(TAG, "Starting migration")
-
- val prefsEditor = pinnedSharedPrefsProvider.invoke(context).edit()
- bundle.keySet().forEach { key ->
- if(bundle.getBoolean(key)) {
- prefsEditor.putBoolean(key, true)
- }
- }
- prefsEditor.apply()
-
- Log.i(TAG, "Migration complete")
- }
-
- companion object {
- private const val TAG = "ChooserPinMigrationReceiver"
- }
-} \ No newline at end of file