Commit baa2b4d4 authored by mkosiba@chromium.org's avatar mkosiba@chromium.org

[android_webview] Fix logtag in InputStreamUtil.

This fixes a typo.

BUG=None
TEST=None

Review URL: https://codereview.chromium.org/442743002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287529 0039d316-1c4b-4281-b951-d872f2087c98
parent cdf19cb9
...@@ -17,7 +17,7 @@ import java.io.InputStream; ...@@ -17,7 +17,7 @@ import java.io.InputStream;
*/ */
@JNINamespace("android_webview") @JNINamespace("android_webview")
class InputStreamUtil { class InputStreamUtil {
private static final String LOGTAG = "AwAssets"; private static final String LOGTAG = "InputStreamUtil";
// The InputStream APIs return -1 in some cases. In order to convey the extra information that // The InputStream APIs return -1 in some cases. In order to convey the extra information that
// the call had failed due to an exception being thrown we simply map all negative return values // the call had failed due to an exception being thrown we simply map all negative return values
// from the original calls to -1 and make -2 mean that an exception has been thrown. // from the original calls to -1 and make -2 mean that an exception has been thrown.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment