diff options
author | 2013-05-21 14:24:40 -0700 | |
---|---|---|
committer | 2013-05-21 14:24:40 -0700 | |
commit | e3a72c9b4f82e0ca57b1216c7d0b0593aa921948 (patch) | |
tree | adc65f40640dd3a04379e51ba552b7d1e9ee3246 /java/src/com/android/inputmethod/research/ResearchLog.java | |
parent | 8b26ab265348f0591190fa35000fae2a4289118d (diff) | |
parent | ff80ee20b4b7bf703e89660a68f50975a5cec2a5 (diff) | |
download | latinime-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/ResearchLog.java')
-rw-r--r-- | java/src/com/android/inputmethod/research/ResearchLog.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/research/ResearchLog.java b/java/src/com/android/inputmethod/research/ResearchLog.java index 3e82139a6..fde2798e1 100644 --- a/java/src/com/android/inputmethod/research/ResearchLog.java +++ b/java/src/com/android/inputmethod/research/ResearchLog.java @@ -81,6 +81,17 @@ public class ResearchLog { } /** + * Returns true if this is a FeedbackLog. + * + * FeedbackLogs record only the data associated with a Feedback dialog. Instead of normal + * logging, they contain a LogStatement with the complete feedback string and optionally a + * recording of the user's supplied demo of the problem. + */ + public boolean isFeedbackLog() { + return false; + } + + /** * Waits for any publication requests to finish and closes the {@link JsonWriter} used for * output. * |