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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContentsClient.java

Issue 350703003: aw: Use HashMap instead of ArrayMap (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: landmine Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java b/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
index 1971d67d80de8b5e705dc44141a0de21d75ac626..5e4ba6948b018b9b7c23ba5422991c68a96d2623 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentsClient.java
@@ -10,7 +10,6 @@ import android.graphics.Picture;
import android.net.http.SslError;
import android.os.Looper;
import android.os.Message;
-import android.util.ArrayMap;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.ConsoleMessage;
@@ -24,6 +23,7 @@ import org.chromium.content.browser.WebContentsObserverAndroid;
import org.chromium.net.NetError;
import java.security.Principal;
+import java.util.HashMap;
/**
* Base-class that an AwContents embedder derives from to receive callbacks.
@@ -165,7 +165,7 @@ public abstract class AwContentsClient {
// Method used (GET/POST/OPTIONS)
public String method;
// Headers that would have been sent to server.
- public ArrayMap<String, String> requestHeaders;
+ public HashMap<String, String> requestHeaders;
}
public abstract void getVisitedHistory(ValueCallback<String[]> callback);
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698