2009-07-05 20:17:13 +00:00
|
|
|
/*
|
2010-03-26 22:07:10 +00:00
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
2012-12-19 06:36:55 +00:00
|
|
|
*
|
2009-07-05 20:17:13 +00:00
|
|
|
* 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
|
2012-12-19 06:36:55 +00:00
|
|
|
*
|
2009-07-05 20:17:13 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-12-19 06:36:55 +00:00
|
|
|
*
|
2009-07-05 20:17:13 +00:00
|
|
|
* 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.inputmethod.latin;
|
|
|
|
|
2010-03-30 01:04:13 +00:00
|
|
|
import android.app.backup.BackupAgentHelper;
|
2010-03-05 23:49:16 +00:00
|
|
|
import android.app.backup.SharedPreferencesBackupHelper;
|
2009-07-05 20:17:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Backs up the Latin IME shared preferences.
|
|
|
|
*/
|
2012-09-27 09:16:16 +00:00
|
|
|
public final class BackupAgent extends BackupAgentHelper {
|
2010-08-24 03:38:39 +00:00
|
|
|
@Override
|
2009-07-05 20:17:13 +00:00
|
|
|
public void onCreate() {
|
|
|
|
addHelper("shared_pref", new SharedPreferencesBackupHelper(this,
|
2010-01-16 20:21:23 +00:00
|
|
|
getPackageName() + "_preferences"));
|
2009-07-05 20:17:13 +00:00
|
|
|
}
|
|
|
|
}
|