| 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_event_type.h" | 20 #include "net/log/net_log_event_type.h" |
| 21 #include "net/log/net_log_with_source.h" | 21 #include "net/log/net_log_with_source.h" |
| 22 #include "url/gurl.h" | 22 #include "url/gurl.h" |
| 23 | 23 |
| 24 class ResourceDispatcherHost; | |
| 25 | |
| 26 namespace net { | 24 namespace net { |
| 27 class URLRequest; | 25 class URLRequest; |
| 28 } | 26 } |
| 29 | 27 |
| 30 namespace safe_browsing { | |
| 31 class V4LocalDatabaseManager; | |
| 32 } | |
| 33 | |
| 34 // SafeBrowsingResourceThrottle checks that URLs are "safe" before | 28 // SafeBrowsingResourceThrottle checks that URLs are "safe" before |
| 35 // navigating to them. To be considered "safe", a URL must not appear in the | 29 // navigating to them. To be considered "safe", a URL must not appear in the |
| 36 // malware/phishing blacklists (see SafeBrowsingService for details). | 30 // malware/phishing blacklists (see SafeBrowsingService for details). |
| 37 // | 31 // |
| 38 // On desktop (ifdef SAFE_BROWSING_DB_LOCAL) | 32 // On desktop (ifdef SAFE_BROWSING_DB_LOCAL) |
| 39 // ----------------------------------------- | 33 // ----------------------------------------- |
| 40 // This check is done before requesting the original URL, and additionally | 34 // This check is done before requesting the original URL, and additionally |
| 41 // before following any subsequent redirect. In the common case the check | 35 // 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 | 36 // 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 | 37 // flow is un-interrupted. However if the URL fails this quick check, it |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> database_manager_; | 175 scoped_refptr<safe_browsing::SafeBrowsingDatabaseManager> database_manager_; |
| 182 scoped_refptr<safe_browsing::SafeBrowsingUIManager> ui_manager_; | 176 scoped_refptr<safe_browsing::SafeBrowsingUIManager> ui_manager_; |
| 183 const net::URLRequest* request_; | 177 const net::URLRequest* request_; |
| 184 const content::ResourceType resource_type_; | 178 const content::ResourceType resource_type_; |
| 185 net::NetLogWithSource net_log_with_source_; | 179 net::NetLogWithSource net_log_with_source_; |
| 186 | 180 |
| 187 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); | 181 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); |
| 188 }; | 182 }; |
| 189 | 183 |
| 190 #endif // CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 184 #endif // CHROME_BROWSER_LOADER_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
| OLD | NEW |