aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java')
-rw-r--r--src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java b/src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java
deleted file mode 100644
index 238170d0a..000000000
--- a/src/main/java/com/anysoftkeyboard/backup/CloudBackupRequesterApi8.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (c) 2013 Menny Even-Danan
- *
- * 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.anysoftkeyboard.backup;
-
-import android.annotation.TargetApi;
-import android.app.backup.BackupManager;
-
-import com.anysoftkeyboard.IndirectlyInstantiated;
-
-@TargetApi(8)
-@IndirectlyInstantiated
-public class CloudBackupRequesterApi8 implements CloudBackupRequester {
-
- private final BackupManager mBackuper;
-
- public CloudBackupRequesterApi8(CloudBackupRequesterDiagram diagram) {
- mBackuper = new BackupManager(diagram.getContext());
- }
-
- public void notifyBackupManager() {
- mBackuper.dataChanged();
- }
-
-/*
- public void requestRestore()
- {
- mBackuper.requestRestore(
- new RestoreObserver() {
- @Override
- public void restoreStarting(int numPackages) {
- Logger.d(TAG, "Restore from cloud starting.");
- super.restoreStarting(numPackages);
- }
-
- @Override
- public void onUpdate(int nowBeingRestored, String currentPackage) {
- Logger.d(TAG, "Restoring "+currentPackage);
- super.onUpdate(nowBeingRestored, currentPackage);
- }
-
- @Override
- public void restoreFinished(int error) {
- Logger.d(TAG, "Restore from cloud finished.");
- super.restoreFinished(error);
- }
- });
- }
- */
-
-}