diff options
author | 2013-08-12 12:20:18 +0900 | |
---|---|---|
committer | 2013-08-12 14:48:45 +0900 | |
commit | 8c4fcb108fb0da7544edf32ccafd7eb8a0178200 (patch) | |
tree | c0efedf4d1792e221ef7a141f5c830f3f30be946 /java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java | |
parent | 4a2f6a22167e336d2d21c51280de4e876b4a8f06 (diff) | |
download | latinime-8c4fcb108fb0da7544edf32ccafd7eb8a0178200.tar.gz latinime-8c4fcb108fb0da7544edf32ccafd7eb8a0178200.tar.xz latinime-8c4fcb108fb0da7544edf32ccafd7eb8a0178200.zip |
Add PersionalizationDictionaryRegister
Bug: 9429906
Change-Id: Ibd4d5cedb371c0b4ee1342a3e6d221c9e34c2402
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java b/java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java new file mode 100644 index 000000000..534d3c518 --- /dev/null +++ b/java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2013 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.inputmethod.latin.personalization; + +import android.content.Context; +import android.content.res.Configuration; + +public class PersonalizationDictionarySessionRegister { + public static void init(Context context) { + } + + public static void onConfigurationChanged(final Context context, final Configuration conf) { + } +} |