| 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_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 class SafeBrowsingResourceThrottle | 47 class SafeBrowsingResourceThrottle |
| 48 : public content::ResourceThrottle, | 48 : public content::ResourceThrottle, |
| 49 public SafeBrowsingDatabaseManager::Client, | 49 public SafeBrowsingDatabaseManager::Client, |
| 50 public base::SupportsWeakPtr<SafeBrowsingResourceThrottle> { | 50 public base::SupportsWeakPtr<SafeBrowsingResourceThrottle> { |
| 51 public: | 51 public: |
| 52 SafeBrowsingResourceThrottle(const net::URLRequest* request, | 52 SafeBrowsingResourceThrottle(const net::URLRequest* request, |
| 53 content::ResourceType resource_type, | 53 content::ResourceType resource_type, |
| 54 SafeBrowsingService* safe_browsing); | 54 SafeBrowsingService* safe_browsing); |
| 55 | 55 |
| 56 // content::ResourceThrottle implementation (called on IO thread): | 56 // content::ResourceThrottle implementation (called on IO thread): |
| 57 virtual void WillStartRequest(bool* defer) OVERRIDE; | 57 virtual void WillStartRequest(bool* defer) override; |
| 58 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE; | 58 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) override; |
| 59 virtual const char* GetNameForLogging() const OVERRIDE; | 59 virtual const char* GetNameForLogging() const override; |
| 60 | 60 |
| 61 // SafeBrowsingDabaseManager::Client implementation (called on IO thread): | 61 // SafeBrowsingDabaseManager::Client implementation (called on IO thread): |
| 62 virtual void OnCheckBrowseUrlResult(const GURL& url, | 62 virtual void OnCheckBrowseUrlResult(const GURL& url, |
| 63 SBThreatType result, | 63 SBThreatType result, |
| 64 const std::string& metadata) OVERRIDE; | 64 const std::string& metadata) override; |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 // Describes what phase of the check a throttle is in. | 67 // Describes what phase of the check a throttle is in. |
| 68 enum State { | 68 enum State { |
| 69 STATE_NONE, | 69 STATE_NONE, |
| 70 STATE_CHECKING_URL, | 70 STATE_CHECKING_URL, |
| 71 STATE_DISPLAYING_BLOCKING_PAGE, | 71 STATE_DISPLAYING_BLOCKING_PAGE, |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 // Describes what stage of the request got paused by the check. | 74 // Describes what stage of the request got paused by the check. |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 scoped_refptr<SafeBrowsingUIManager> ui_manager_; | 129 scoped_refptr<SafeBrowsingUIManager> ui_manager_; |
| 130 const net::URLRequest* request_; | 130 const net::URLRequest* request_; |
| 131 const bool is_subresource_; | 131 const bool is_subresource_; |
| 132 const bool is_subframe_; | 132 const bool is_subframe_; |
| 133 | 133 |
| 134 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); | 134 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceThrottle); |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 | 137 |
| 138 #endif // CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ | 138 #endif // CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_THROTTLE_H_ |
| OLD | NEW |