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

Side by Side Diff: chrome/browser/renderer_host/safe_browsing_resource_handler.h

Issue 660240: Make sure SafeBrowsingResourceHandler overrides ResourceHandler::OnRequestClo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/renderer_host/safe_browsing_resource_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_HANDLER_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_HANDLER_H_
6 #define CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_HANDLER_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/ref_counted.h" 10 #include "base/ref_counted.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 bool OnRequestRedirected(int request_id, const GURL& new_url, 54 bool OnRequestRedirected(int request_id, const GURL& new_url,
55 ResourceResponse* response, bool* defer); 55 ResourceResponse* response, bool* defer);
56 bool OnResponseStarted(int request_id, ResourceResponse* response); 56 bool OnResponseStarted(int request_id, ResourceResponse* response);
57 bool OnWillStart(int request_id, const GURL& url, bool* defer); 57 bool OnWillStart(int request_id, const GURL& url, bool* defer);
58 bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size, 58 bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
59 int min_size); 59 int min_size);
60 bool OnReadCompleted(int request_id, int* bytes_read); 60 bool OnReadCompleted(int request_id, int* bytes_read);
61 bool OnResponseCompleted(int request_id, 61 bool OnResponseCompleted(int request_id,
62 const URLRequestStatus& status, 62 const URLRequestStatus& status,
63 const std::string& security_info); 63 const std::string& security_info);
64 virtual void OnRequestClosed();
64 65
65 // SafeBrowsingService::Client implementation, called on the IO thread once 66 // SafeBrowsingService::Client implementation, called on the IO thread once
66 // the URL has been classified. 67 // the URL has been classified.
67 void OnUrlCheckResult(const GURL& url, 68 void OnUrlCheckResult(const GURL& url,
68 SafeBrowsingService::UrlCheckResult result); 69 SafeBrowsingService::UrlCheckResult result);
69 70
70 // SafeBrowsingService::Client implementation, called on the IO thread when 71 // SafeBrowsingService::Client implementation, called on the IO thread when
71 // the user has decided to proceed with the current request, or go back. 72 // the user has decided to proceed with the current request, or go back.
72 void OnBlockingPageComplete(bool proceed); 73 void OnBlockingPageComplete(bool proceed);
73 74
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 int render_view_id_; 146 int render_view_id_;
146 scoped_refptr<SafeBrowsingService> safe_browsing_; 147 scoped_refptr<SafeBrowsingService> safe_browsing_;
147 ResourceDispatcherHost* rdh_; 148 ResourceDispatcherHost* rdh_;
148 ResourceType::Type resource_type_; 149 ResourceType::Type resource_type_;
149 150
150 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceHandler); 151 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingResourceHandler);
151 }; 152 };
152 153
153 154
154 #endif // CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_HANDLER_H_ 155 #endif // CHROME_BROWSER_RENDERER_HOST_SAFE_BROWSING_RESOURCE_HANDLER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/safe_browsing_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698