OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/renderer_host/safe_browsing_resource_handler.h" | 5 #include "chrome/browser/renderer_host/safe_browsing_resource_handler.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" | 8 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" |
9 #include "chrome/browser/renderer_host/resource_message_filter.h" | 9 #include "chrome/browser/renderer_host/resource_message_filter.h" |
10 #include "chrome/common/notification_service.h" | 10 #include "chrome/common/notification_service.h" |
11 #include "net/base/net_errors.h" | 11 #include "net/base/net_errors.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 bool SafeBrowsingResourceHandler::OnResponseStarted( | 89 bool SafeBrowsingResourceHandler::OnResponseStarted( |
90 int request_id, ResourceResponse* response) { | 90 int request_id, ResourceResponse* response) { |
91 return next_handler_->OnResponseStarted(request_id, response); | 91 return next_handler_->OnResponseStarted(request_id, response); |
92 } | 92 } |
93 | 93 |
94 void SafeBrowsingResourceHandler::OnGetHashTimeout() { | 94 void SafeBrowsingResourceHandler::OnGetHashTimeout() { |
95 if (!in_safe_browsing_check_) | 95 if (!in_safe_browsing_check_) |
96 return; | 96 return; |
97 | 97 |
98 safe_browsing_->CancelCheck(this); | 98 safe_browsing_->CancelCheck(this); |
99 OnUrlCheckResult(GURL::EmptyGURL(), SafeBrowsingService::URL_SAFE); | 99 OnUrlCheckResult(GURL(), SafeBrowsingService::URL_SAFE); |
100 } | 100 } |
101 | 101 |
102 bool SafeBrowsingResourceHandler::OnWillRead(int request_id, | 102 bool SafeBrowsingResourceHandler::OnWillRead(int request_id, |
103 net::IOBuffer** buf, int* buf_size, | 103 net::IOBuffer** buf, int* buf_size, |
104 int min_size) { | 104 int min_size) { |
105 if (in_safe_browsing_check_ && pause_time_.is_null()) { | 105 if (in_safe_browsing_check_ && pause_time_.is_null()) { |
106 pause_time_ = base::Time::Now(); | 106 pause_time_ = base::Time::Now(); |
107 MessageLoop::current()->PostDelayedTask( | 107 MessageLoop::current()->PostDelayedTask( |
108 FROM_HERE, | 108 FROM_HERE, |
109 NewRunnableMethod(this, &SafeBrowsingResourceHandler::OnGetHashTimeout), | 109 NewRunnableMethod(this, &SafeBrowsingResourceHandler::OnGetHashTimeout), |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 if (!defer) { | 244 if (!defer) { |
245 // TODO(wtc): should we pass a new first party for cookies URL? | 245 // TODO(wtc): should we pass a new first party for cookies URL? |
246 rdh_->FollowDeferredRedirect(render_process_host_id_, redirect_id_, | 246 rdh_->FollowDeferredRedirect(render_process_host_id_, redirect_id_, |
247 false, GURL()); | 247 false, GURL()); |
248 } | 248 } |
249 | 249 |
250 redirect_response_ = NULL; | 250 redirect_response_ = NULL; |
251 redirect_id_ = -1; | 251 redirect_id_ = -1; |
252 Release(); | 252 Release(); |
253 } | 253 } |
OLD | NEW |