aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/FeedbackUtils.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-03-19 16:49:19 +0900
committerSatoshi Kataoka <satok@google.com>2013-03-19 17:25:55 +0900
commita462cd80ae9d07cea596c61c54d7b1b2ba6c6645 (patch)
tree4ae6b442805aa19100174495f3cd805b586f2d1d /java/src/com/android/inputmethod/latin/FeedbackUtils.java
parent8e005f2989de98cd284f1f5210f4c9d8d658e5e7 (diff)
downloadlatinime-a462cd80ae9d07cea596c61c54d7b1b2ba6c6645.tar.gz
latinime-a462cd80ae9d07cea596c61c54d7b1b2ba6c6645.tar.xz
latinime-a462cd80ae9d07cea596c61c54d7b1b2ba6c6645.zip
Support feedback
Bug: 8143554 Change-Id: If0a6bafc94da040f97f27c6d046fb58bed9fd615
Diffstat (limited to 'java/src/com/android/inputmethod/latin/FeedbackUtils.java')
-rw-r--r--java/src/com/android/inputmethod/latin/FeedbackUtils.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/FeedbackUtils.java b/java/src/com/android/inputmethod/latin/FeedbackUtils.java
new file mode 100644
index 000000000..1e5260e34
--- /dev/null
+++ b/java/src/com/android/inputmethod/latin/FeedbackUtils.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;
+
+import android.content.Context;
+
+public class FeedbackUtils {
+ public static boolean isFeedbackFormSupported() {
+ return false;
+ }
+
+ public static void showFeedbackForm(Context context) {
+ }
+}