Commit eac1d6e2 authored by tedchoc@chromium.org's avatar tedchoc@chromium.org

Fix android's experimental bot broken by: https://chromiumcodereview.appspot.com/10824257

Android does not have URLBlacklist as it does not support
ENABLE_CONFIGURATION_POLICY

TEST=build unit_tests

BUG=


Review URL: https://chromiumcodereview.appspot.com/10834380

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152215 0039d316-1c4b-4281-b951-d872f2087c98
parent 87c66266
......@@ -70,8 +70,10 @@ bool ManagedModeURLFilter::IsURLWhitelisted(const GURL& url) const {
if (!active_)
return true;
#if defined(ENABLE_CONFIGURATION_POLICY)
if (!policy::URLBlacklist::HasStandardScheme(url))
return true;
#endif
std::set<URLMatcherConditionSet::ID> matching_ids =
url_matcher_->MatchURL(url);
......
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