Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2017 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 #ifndef CHROME_BROWSER_SUBRESOURCE_FILTER_NAVIGATION_THROTTLE_UTIL_H_ | |
| 6 #define CHROME_BROWSER_SUBRESOURCE_FILTER_NAVIGATION_THROTTLE_UTIL_H_ | |
| 7 | |
| 8 #include "content/public/browser/navigation_throttle.h" | |
| 9 | |
| 10 namespace safe_browsing { | |
| 11 class SafeBrowsingService; | |
| 12 } | |
| 13 | |
| 14 content::NavigationThrottle* MaybeCreateSubresourceFilterNavigationThrottle( | |
|
engedy
2017/03/21 13:44:16
nit: Mention in a comment that |safe_browsing_serv
melandory
2017/03/24 15:49:27
Done.
| |
| 15 content::NavigationHandle* navigation_handle, | |
| 16 safe_browsing::SafeBrowsingService* safe_browsing_service); | |
| 17 | |
| 18 #endif // CHROME_BROWSER_SUBRESOURCE_FILTER_NAVIGATION_THROTTLE_UTIL_H_ | |
| OLD | NEW |