aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/FeedbackLog.java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2013-05-21 14:24:40 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-05-21 14:24:40 -0700
commite3a72c9b4f82e0ca57b1216c7d0b0593aa921948 (patch)
treeadc65f40640dd3a04379e51ba552b7d1e9ee3246 /java/src/com/android/inputmethod/research/FeedbackLog.java
parent8b26ab265348f0591190fa35000fae2a4289118d (diff)
parentff80ee20b4b7bf703e89660a68f50975a5cec2a5 (diff)
downloadlatinime-e3a72c9b4f82e0ca57b1216c7d0b0593aa921948.tar.gz
latinime-e3a72c9b4f82e0ca57b1216c7d0b0593aa921948.tar.xz
latinime-e3a72c9b4f82e0ca57b1216c7d0b0593aa921948.zip
am ff80ee20: Merge "Modify isAllowedToLog"
* commit 'ff80ee20b4b7bf703e89660a68f50975a5cec2a5': Modify isAllowedToLog
Diffstat (limited to 'java/src/com/android/inputmethod/research/FeedbackLog.java')
-rw-r--r--java/src/com/android/inputmethod/research/FeedbackLog.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/research/FeedbackLog.java b/java/src/com/android/inputmethod/research/FeedbackLog.java
new file mode 100644
index 000000000..5af194c32
--- /dev/null
+++ b/java/src/com/android/inputmethod/research/FeedbackLog.java
@@ -0,0 +1,32 @@
+/*
+ * 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.research;
+
+import android.content.Context;
+
+import java.io.File;
+
+public class FeedbackLog extends ResearchLog {
+ public FeedbackLog(final File outputFile, final Context context) {
+ super(outputFile, context);
+ }
+
+ @Override
+ public boolean isFeedbackLog() {
+ return true;
+ }
+}