| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/test_runner/mock_web_document_subresource_filter.h" | |
| 6 | |
| 7 #include <algorithm> | |
| 8 | |
| 9 #include "base/strings/string_util.h" | |
| 10 #include "third_party/WebKit/public/platform/WebURL.h" | |
| 11 #include "url/gurl.h" | |
| 12 | |
| 13 namespace test_runner { | |
| 14 | |
| 15 MockWebDocumentSubresourceFilter::MockWebDocumentSubresourceFilter( | |
| 16 const std::vector<std::string>& disallowed_path_suffixes) | |
| 17 : disallowed_path_suffixes_(disallowed_path_suffixes) {} | |
| 18 | |
| 19 MockWebDocumentSubresourceFilter::~MockWebDocumentSubresourceFilter() {} | |
| 20 | |
| 21 blink::WebDocumentSubresourceFilter::LoadPolicy | |
| 22 MockWebDocumentSubresourceFilter::getLoadPolicy( | |
| 23 const blink::WebURL& resource_url, | |
| 24 blink::WebURLRequest::RequestContext /* ignored */) { | |
| 25 const std::string resource_path(GURL(resource_url).path()); | |
| 26 return std::find_if(disallowed_path_suffixes_.begin(), | |
| 27 disallowed_path_suffixes_.end(), | |
| 28 [&resource_path](const std::string& suffix) { | |
| 29 return base::EndsWith(resource_path, suffix, | |
| 30 base::CompareCase::SENSITIVE); | |
| 31 }) == disallowed_path_suffixes_.end() | |
| 32 ? Allow | |
| 33 : Disallow; | |
| 34 } | |
| 35 | |
| 36 void MockWebDocumentSubresourceFilter::reportDisallowedLoad() {} | |
| 37 | |
| 38 } // namespace test_runner | |
| OLD | NEW |