Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: chrome/browser/subresource_filter/subresource_filter_navigation_trottle_util.h

Issue 2645283007: Add the client for accessing Subresource Filter only list. (Closed)
Patch Set: fix unittest Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_SUBRESOURCE_FILTER_NAVIGATION_TROTTLE_ UTIL_H_
vakh (use Gerrit instead) 2017/02/10 03:00:12 typo: throttle
6 #define CHROME_BROWSER_SUBRESOURCE_FILTER_SUBRESOURCE_FILTER_NAVIGATION_TROTTLE_ UTIL_H_
7
8 #include <memory>
9
10 #include "content/public/browser/navigation_throttle.h"
11
12 namespace safe_browsing {
13 class SafeBrowsingService;
14 }
15
16 std::unique_ptr<content::NavigationThrottle>
17 MaybeCreateSubresourceFilterNavigationThrottle(
18 content::NavigationHandle* handle,
19 safe_browsing::SafeBrowsingService* sb_service);
20
21 #endif // CHROME_BROWSER_SUBRESOURCE_FILTER_SUBRESOURCE_FILTER_NAVIGATION_TROTT LE_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698