aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/FeedbackLog.java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2013-05-21 21:22:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-05-21 21:22:23 +0000
commitff80ee20b4b7bf703e89660a68f50975a5cec2a5 (patch)
treeadc65f40640dd3a04379e51ba552b7d1e9ee3246 /java/src/com/android/inputmethod/research/FeedbackLog.java
parentea88e2ffe86cad12387c8ab741c38de6e6e15713 (diff)
parent74a6196c6b7332164a438fa5aabce24b37ffca0e (diff)
downloadlatinime-ff80ee20b4b7bf703e89660a68f50975a5cec2a5.tar.gz
latinime-ff80ee20b4b7bf703e89660a68f50975a5cec2a5.tar.xz
latinime-ff80ee20b4b7bf703e89660a68f50975a5cec2a5.zip
Merge "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;
+ }
+}