Commit eba6643c authored by Clark DuVall's avatar Clark DuVall Committed by Commit Bot

[WebLayer] Don't log non-fatal exception

This exception may happen when trying to notify WebView we are running
in-process, but it is fine to ignore.

Change-Id: Id9b17ab8cbad42a28559dbb505ef403e8d1105e5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2343227
Commit-Queue: Clark DuVall <cduvall@chromium.org>
Commit-Queue: Richard Coles <torne@chromium.org>
Auto-Submit: Clark DuVall <cduvall@chromium.org>
Reviewed-by: default avatarRichard Coles <torne@chromium.org>
Cr-Commit-Position: refs/heads/master@{#796003}
parent 30bb2ed9
......@@ -703,7 +703,7 @@ public final class WebLayerImpl extends IWebLayer.Stub {
"setWebLayerRunningInSameProcess");
setter.invoke(null);
} catch (Exception e) {
Log.w(TAG, "Unable to notify WebView running in process", e);
Log.w(TAG, "Unable to notify WebView running in process.");
}
}
......
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