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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java

Issue 2467283004: Make some android code gender neutral. (Closed)
Patch Set: Remove extra line Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java
index 27de0b6eed7bd90a7823ed4043c906564e34f3e2..4ca1ed913f53a189ed7806ea8dfdb5382b528a80 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/download/OMADownloadHandler.java
@@ -24,13 +24,14 @@ import android.view.View;
import android.webkit.URLUtil;
import android.widget.TextView;
+import org.xmlpull.v1.XmlPullParser;
+import org.xmlpull.v1.XmlPullParserException;
+import org.xmlpull.v1.XmlPullParserFactory;
+
import org.chromium.base.ApplicationStatus;
import org.chromium.base.VisibleForTesting;
import org.chromium.chrome.R;
import org.chromium.chrome.browser.ChromeApplication;
-import org.xmlpull.v1.XmlPullParser;
-import org.xmlpull.v1.XmlPullParserException;
-import org.xmlpull.v1.XmlPullParserFactory;
import java.io.DataOutputStream;
import java.io.File;
@@ -59,7 +60,7 @@ import java.util.Map;
* 6. Once the download is completed, sends a message to the server if installNotifyURI
* is present in the download descriptor.
* 7. Prompts user with a dialog to open the NextURL specified in the download descriptor.
- * If steps 2 - 6 fails, a warning dialog will be prompted to the user to let him
+ * If steps 2 - 6 fails, a warning dialog will be prompted to the user to let them
* know the error. Steps 6-7 will be executed afterwards.
* If installNotifyURI is present in the download descriptor, the downloaded content will
* be saved to the app directory first. If step 6 completes successfully, the content will

Powered by Google App Engine
This is Rietveld 408576698