diff options
author | 2013-03-19 01:30:29 -0700 | |
---|---|---|
committer | 2013-03-19 01:30:29 -0700 | |
commit | c1125b6dd19a8c8882ba1b94f2d417e74023f1f6 (patch) | |
tree | 66a4c8349f233fc27e62e6190f69b518b8bb472c /java/src/com/android/inputmethod/latin/FeedbackUtils.java | |
parent | 458f56b6792b233a03c30018748111150a313d68 (diff) | |
parent | a462cd80ae9d07cea596c61c54d7b1b2ba6c6645 (diff) | |
download | latinime-c1125b6dd19a8c8882ba1b94f2d417e74023f1f6.tar.gz latinime-c1125b6dd19a8c8882ba1b94f2d417e74023f1f6.tar.xz latinime-c1125b6dd19a8c8882ba1b94f2d417e74023f1f6.zip |
am a462cd80: Support feedback
* commit 'a462cd80ae9d07cea596c61c54d7b1b2ba6c6645':
Support feedback
Diffstat (limited to 'java/src/com/android/inputmethod/latin/FeedbackUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/FeedbackUtils.java | 28 |
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) { + } +} |