aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/personalization
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2014-06-13 18:39:29 +0900
committerKeisuke Kuroyanagi <ksk@google.com>2014-06-13 18:39:29 +0900
commit1a4d815b0bba824cb6893ad9f6ef0597c9740378 (patch)
treee290b90c6bde7ea93b3f1d97cd23021a36c069a1 /java/src/com/android/inputmethod/latin/personalization
parentd7a22c8439c77f2bf81b5dc60d58cf65d129da81 (diff)
downloadlatinime-1a4d815b0bba824cb6893ad9f6ef0597c9740378.tar.gz
latinime-1a4d815b0bba824cb6893ad9f6ef0597c9740378.tar.xz
latinime-1a4d815b0bba824cb6893ad9f6ef0597c9740378.zip
Contextual dictionary updater.
Bug: 14161647 Change-Id: I8106419678d5d26a4debec7bbef43af079c1ab18
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization')
-rw-r--r--java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java b/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java
new file mode 100644
index 000000000..2cccf1615
--- /dev/null
+++ b/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2014 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 com.android.inputmethod.latin.DictionaryFacilitator;
+
+public class ContextualDictionaryUpdater {
+ public ContextualDictionaryUpdater(final Context context,
+ final DictionaryFacilitator dictionaryFacilitator) {
+ }
+
+ public void onLoadSettings(final boolean usePersonalizedDicts) {
+ }
+
+ public void onStartInputView(final String packageName) {
+ }
+
+ public void onDestroy() {
+ }
+}