summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2013-04-26 16:20:54 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-26 16:20:54 -0700
commitf94531712f277ace7265edfc4413c246216de465 (patch)
treeca8f626b8de66fed8d94afb53610e06fa81bd32a /src/com/android
parent87ea8cf55157fd2a540285a8c94d5128970c62fe (diff)
parent2f49674c621c66ac569319721bcaf3c5d331313e (diff)
downloadandroid_packages_apps_Snap-f94531712f277ace7265edfc4413c246216de465.tar.gz
android_packages_apps_Snap-f94531712f277ace7265edfc4413c246216de465.tar.bz2
android_packages_apps_Snap-f94531712f277ace7265edfc4413c246216de465.zip
am 45377ce9: Merge "Log name of borders and filters of saved images" into gb-ub-photos-bryce
* commit '45377ce902eb0dce6fb6b1e58925654822e25a19': Log name of borders and filters of saved images
Diffstat (limited to 'src/com/android')
-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 f6e9113ee..1b7a425e7 100644
--- a/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
+++ b/src/com/android/gallery3d/filtershow/presets/ImagePreset.java
@@ -37,6 +37,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.io.IOException;
import java.io.StringReader;
@@ -471,6 +472,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;
}
@@ -494,6 +499,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;
}