OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 5 #ifndef CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
6 #define CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 6 #define CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
14 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
15 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 15 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
16 #include "chrome/browser/safe_browsing/ui_manager.h" | 16 #include "chrome/browser/safe_browsing/ui_manager.h" |
17 #include "components/safe_browsing_db/database_manager.h" | 17 #include "components/safe_browsing_db/database_manager.h" |
18 #include "content/public/browser/resource_throttle.h" | 18 #include "content/public/browser/resource_throttle.h" |
19 #include "content/public/common/resource_type.h" | 19 #include "content/public/common/resource_type.h" |
20 #include "net/log/net_log.h" | 20 #include "net/log/net_log.h" |
21 #include "net/log/net_log_event_type.h" | 21 #include "net/log/net_log_event_type.h" |
22 #include "url/gurl.h" | |
23 | 22 |
24 class ResourceDispatcherHost; | 23 class ResourceDispatcherHost; |
25 | 24 |
26 namespace net { | 25 namespace net { |
27 class URLRequest; | 26 class URLRequest; |
28 } | 27 } |
29 | 28 |
30 namespace safe_browsing { | |
31 class V4LocalDatabaseManager; | |
32 } | |
33 | |
34 // SafeBrowsingResourceThrottle checks that URLs are "safe" before | 29 // SafeBrowsingResourceThrottle checks that URLs are "safe" before |
35 // navigating to them. To be considered "safe", a URL must not appear in the | 30 // navigating to them. To be considered "safe", a URL must not appear in the |
36 // malware/phishing blacklists (see SafeBrowsingService for details). | 31 // malware/phishing blacklists (see SafeBrowsingService for details). |
37 // | 32 // |
38 // On desktop (ifdef SAFE_BROWSING_DB_LOCAL) | 33 // On desktop (ifdef SAFE_BROWSING_DB_LOCAL) |
39 // ----------------------------------------- | 34 // ----------------------------------------- |
40 // This check is done before requesting the original URL, and additionally | 35 // This check is done before requesting the original URL, and additionally |
41 // before following any subsequent redirect. In the common case the check | 36 // before following any subsequent redirect. In the common case the check |
42 // completes synchronously (no match in the in-memory DB), so the request's | 37 // completes synchronously (no match in the in-memory DB), so the request's |
43 // flow is un-interrupted. However if the URL fails this quick check, it | 38 // flow is un-interrupted. However if the URL fails this quick check, it |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 // If in DEFERRED_UNCHECKED_REDIRECT state, this is the | 171 // If in DEFERRED_UNCHECKED_REDIRECT state, this is the |
177 // URL we still need to check before resuming. | 172 // URL we still need to check before resuming. |
178 GURL unchecked_redirect_url_; | 173 GURL unchecked_redirect_url_; |
179 GURL url_being_checked_; | 174 GURL url_being_checked_; |
180 | 175 |
181 scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> database_manager_; | 176 scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> database_manager_; |
182 scoped_refptr<safe_browsing::SafeBrowsingUIManager> ui_manager_; | 177 scoped_refptr<safe_browsing::SafeBrowsingUIManager> ui_manager_; |
183 const net::URLRequest* request_; | 178 const net::URLRequest* request_; |
184 const content::ResourceType resource_type_; | 179 const content::ResourceType resource_type_; |
185 net::NetLogWithSource net_log_with_source_; | 180 net::NetLogWithSource net_log_with_source_; |
186 scoped_refptr<safe_browsing::V4LocalDatabaseManager> | |
187 v4_local_database_manager_; | |
188 | 181 |
189 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); | 182 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); |
190 }; | 183 }; |
191 | 184 |
192 #endif // CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 185 #endif // CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
OLD | NEW |