summaryrefslogtreecommitdiffstats
path: root/src/com/android/providers/downloads/DownloadFileInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/providers/downloads/DownloadFileInfo.java')
-rw-r--r--src/com/android/providers/downloads/DownloadFileInfo.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/com/android/providers/downloads/DownloadFileInfo.java b/src/com/android/providers/downloads/DownloadFileInfo.java
index 29cbd940..ce423880 100644
--- a/src/com/android/providers/downloads/DownloadFileInfo.java
+++ b/src/com/android/providers/downloads/DownloadFileInfo.java
@@ -22,13 +22,13 @@ import java.io.FileOutputStream;
* Stores information about the file in which a download gets saved.
*/
public class DownloadFileInfo {
- public DownloadFileInfo(String filename, FileOutputStream stream, int status) {
- this.filename = filename;
- this.stream = stream;
- this.status = status;
- }
+ String mFileName;
+ FileOutputStream mStream;
+ int mStatus;
- String filename;
- FileOutputStream stream;
- int status;
+ public DownloadFileInfo(String fileName, FileOutputStream stream, int status) {
+ mFileName = fileName;
+ mStream = stream;
+ mStatus = status;
+ }
}