summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2013-04-26 23:19:36 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-04-26 23:19:37 +0000
commit2f49674c621c66ac569319721bcaf3c5d331313e (patch)
tree1b50ebba62cf352e24632e7cb6ecab9e1374c59b
parent5cdaaf84486306bea697a4e3487cda3c8e4815cb (diff)
parentfb5aa16743f6c66b39cb5550d93ddf13d399c7ee (diff)
downloadandroid_packages_apps_Snap-2f49674c621c66ac569319721bcaf3c5d331313e.tar.gz
android_packages_apps_Snap-2f49674c621c66ac569319721bcaf3c5d331313e.tar.bz2
android_packages_apps_Snap-2f49674c621c66ac569319721bcaf3c5d331313e.zip
Merge "Log name of borders and filters of saved images" into gb-ub-photos-bryce
-rw-r--r--src/com/android/gallery3d/filtershow/presets/ImagePreset.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/presets/ImagePreset.java b/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
index e0ff0b3e6..3530935e1 100644
--- a/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
+++ b/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
@@ -30,6 +30,7 @@ import com.android.gallery3d.filtershow.imageshow.GeometryMetadata;
import com.android.gallery3d.filtershow.imageshow.MasterImage;
import com.android.gallery3d.filtershow.state.State;
import com.android.gallery3d.filtershow.state.StateAdapter;
+import com.android.gallery3d.util.UsageStatistics;
import java.util.Vector;
@@ -459,6 +460,10 @@ public class ImagePreset {
if (mBorder != null && mDoApplyGeometry) {
mBorder.synchronizeRepresentation();
bitmap = environment.applyRepresentation(mBorder, bitmap);
+ if (environment.getQuality() == QUALITY_FINAL) {
+ UsageStatistics.onEvent(UsageStatistics.COMPONENT_EDITOR,
+ "SaveBorder", mBorder.getName(), 1);
+ }
}
return bitmap;
}
@@ -478,6 +483,10 @@ public class ImagePreset {
representation.synchronizeRepresentation();
}
bitmap = environment.applyRepresentation(representation, bitmap);
+ if (environment.getQuality() == QUALITY_FINAL) {
+ UsageStatistics.onEvent(UsageStatistics.COMPONENT_EDITOR,
+ "SaveFilter", representation.getName(), 1);
+ }
if (environment.needsStop()) {
return bitmap;
}