Merge "Use .setImageURI when updating the photo Uri" into qt-dev
am: cd8de46190

Change-Id: Ifb7b0b9b0a0456100a99da2c08d055a1aae9ac84
diff --git a/src/com/android/contacts/editor/PhotoEditorView.java b/src/com/android/contacts/editor/PhotoEditorView.java
index 09ba797..09a15b0 100644
--- a/src/com/android/contacts/editor/PhotoEditorView.java
+++ b/src/com/android/contacts/editor/PhotoEditorView.java
@@ -198,8 +198,7 @@
      * Binds a full size photo loaded from the given Uri.
      */
     public void setFullSizedPhoto(Uri photoUri) {
-        EditorUiUtils.loadPhoto(ContactPhotoManager.getInstance(getContext()),
-                mPhotoImageView, photoUri);
+        mPhotoImageView.setImageURI(photoUri);
         mIsNonDefaultPhotoBound = true;
         updatePhotoDescription();
     }