diff options
author | 2013-03-21 21:52:17 -0700 | |
---|---|---|
committer | 2013-03-21 21:52:17 -0700 | |
commit | ba0e497a0c53ae2a64c070544f6a6f0495442343 (patch) | |
tree | ad575c85d0b3ddc9d40ade0e5b72af0f1e5c964b /java/src/com/android/inputmethod/latin/FeedbackUtils.java | |
parent | 559616fb0c39e2f0bacdf294b84ba16ad1e8f371 (diff) | |
parent | 525bbec9eccbf5bd4581c2b9908e46f61c4431ad (diff) | |
download | latinime-ba0e497a0c53ae2a64c070544f6a6f0495442343.tar.gz latinime-ba0e497a0c53ae2a64c070544f6a6f0495442343.tar.xz latinime-ba0e497a0c53ae2a64c070544f6a6f0495442343.zip |
Merge commit '525bbec9eccbf5bd4581c2b9908e46f61c4431ad' into jb-mr2-dev
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) { + } +} |