diff options
author | 2013-05-21 21:22:22 +0000 | |
---|---|---|
committer | 2013-05-21 21:22:23 +0000 | |
commit | ff80ee20b4b7bf703e89660a68f50975a5cec2a5 (patch) | |
tree | adc65f40640dd3a04379e51ba552b7d1e9ee3246 /java/src/com/android/inputmethod/research/FeedbackLog.java | |
parent | ea88e2ffe86cad12387c8ab741c38de6e6e15713 (diff) | |
parent | 74a6196c6b7332164a438fa5aabce24b37ffca0e (diff) | |
download | latinime-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.java | 32 |
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; + } +} |