aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2014-06-16 02:45:01 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-06-16 02:45:01 +0000
commit975d506a3880f51d0a59328d697c230a8063e7b9 (patch)
treec451cd62756ff9df18dbc9140877c0635c2d27c5 /java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java
parent233f743ea5976fb345b376466684917e0846f6df (diff)
parenta4f2e8eee086e97330299515b0894da9f602b279 (diff)
downloadlatinime-975d506a3880f51d0a59328d697c230a8063e7b9.tar.gz
latinime-975d506a3880f51d0a59328d697c230a8063e7b9.tar.xz
latinime-975d506a3880f51d0a59328d697c230a8063e7b9.zip
am a4f2e8ee: Merge "Contextual dictionary updater."
* commit 'a4f2e8eee086e97330299515b0894da9f602b279': Contextual dictionary updater.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization/ContextualDictionaryUpdater.java')
-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() {
+ }
+}