Commit c1b2fa29 authored by Michael Giuffrida's avatar Michael Giuffrida Committed by Commit Bot

AppShell: Remove some logspam

ShellExtensionsClient::IsScriptableURL() can be called a lot, so it would be
better if it didn't log NOTIMPLEMENTED().

We can consider it to be "implemented".

Bug: None
Change-Id: I4dd42c526d2aa75f3d7146527f1d6dfa7beb20fa
Reviewed-on: https://chromium-review.googlesource.com/967602Reviewed-by: default avatarBen Wells <benwells@chromium.org>
Commit-Queue: Michael Giuffrida <michaelpg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#545587}
parent b2442242
...@@ -154,7 +154,7 @@ URLPatternSet ShellExtensionsClient::GetPermittedChromeSchemeHosts( ...@@ -154,7 +154,7 @@ URLPatternSet ShellExtensionsClient::GetPermittedChromeSchemeHosts(
bool ShellExtensionsClient::IsScriptableURL(const GURL& url, bool ShellExtensionsClient::IsScriptableURL(const GURL& url,
std::string* error) const { std::string* error) const {
NOTIMPLEMENTED(); // No restrictions on URLs.
return true; return true;
} }
......
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