Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmap.java

Issue 2758313002: Implement the new Photo picker, part two. (Closed)
Patch Set: Fix scrim color Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
Theresa 2017/03/28 20:40:28 s/2016/2017
Finnur 2017/03/31 14:26:50 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.chrome.browser.photo_picker;
6
7 /**
8 * A class to keep track of the meta data associated with a an image in the
9 * photo picker.
10 */
11 public class PickerBitmap implements Comparable<PickerBitmap> {
12 // The possible types of tiles involved in the viewer.
13 public enum TileTypes { PICTURE, CAMERA, GALLERY }
14
15 // The file path to the bitmap to show.
16 private String mFilePath;
17
18 // When the bitmap was last modified on disk.
19 private long mLastModified;
20
21 // The type of tile involved.
22 private TileTypes mType;
23
24 /**
25 * The PickerBitmap constructor.
26 * @param filePath The file path to the bitmap to show.
27 * @param lastModified When the bitmap was last modified on disk.
28 * @param type The type of tile involved.
29 */
30 public PickerBitmap(String filePath, long lastModified, TileTypes type) {
31 mFilePath = filePath;
32 mLastModified = lastModified;
33 mType = type;
34 }
35
36 /**
37 * Accessor for the filepath.
38 * @return The file path for this PickerBitmap object.
39 */
40 public String getFilePath() {
41 return mFilePath;
42 }
43
44 /**
45 * Accessor for the tile type.
46 * @return The type of tile involved for this bitmap object.
47 */
48 public TileTypes type() {
49 return mType;
50 }
51
52 /**
53 * A comparison function for PickerBitmaps (results in a last-modified first sort).
54 * @param other The PickerBitmap to compare it to.
55 * @return 0, 1, or -1, depending on which is bigger.
56 */
57 @Override
58 public int compareTo(PickerBitmap other) {
59 if (mLastModified < other.mLastModified) {
60 return 1;
61 } else if (mLastModified > other.mLastModified) {
62 return -1;
63 }
64 return 0;
65 }
66
67 @Override
68 public final int hashCode() {
69 return (mFilePath + mLastModified).hashCode();
70 }
71
72 @Override
73 public boolean equals(Object other) {
74 if (other == this) {
75 return true;
76 }
77 if (other instanceof PickerBitmap) {
78 return compareTo((PickerBitmap) other) == 0;
79 }
80 return false;
81 }
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698