diff options
author | 2013-08-11 23:27:47 -0700 | |
---|---|---|
committer | 2013-08-11 23:27:47 -0700 | |
commit | 39acbaeeaae31fe4e2551a8cad875f231ef937d2 (patch) | |
tree | 11f82962b71b61e38178cc37b1577275465fa403 /java/src/com/android/inputmethod/latin/personalization/PersonalizationDictionarySessionRegister.java | |
parent | 03cad06a9dced34a210b8e355afd428af2cf54e1 (diff) | |
parent | 1b7c1cd513c53e1d1f07a328405c71509a0ecb6c (diff) | |
download | latinime-39acbaeeaae31fe4e2551a8cad875f231ef937d2.tar.gz latinime-39acbaeeaae31fe4e2551a8cad875f231ef937d2.tar.xz latinime-39acbaeeaae31fe4e2551a8cad875f231ef937d2.zip |
am 1b7c1cd5: Merge "Add PersionalizationDictionaryRegister"
* commit '1b7c1cd513c53e1d1f07a328405c71509a0ecb6c':
Add PersionalizationDictionaryRegister
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) { + } +} |