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

Side by Side Diff: content/browser/renderer_host/sync_resource_handler.h

Issue 7064033: Virtual destructors should have virtual keyword. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 29 matching lines...) Expand all
40 int min_size); 40 int min_size);
41 virtual bool OnReadCompleted(int request_id, int* bytes_read); 41 virtual bool OnReadCompleted(int request_id, int* bytes_read);
42 virtual bool OnResponseCompleted(int request_id, 42 virtual bool OnResponseCompleted(int request_id,
43 const net::URLRequestStatus& status, 43 const net::URLRequestStatus& status,
44 const std::string& security_info); 44 const std::string& security_info);
45 virtual void OnRequestClosed(); 45 virtual void OnRequestClosed();
46 46
47 private: 47 private:
48 enum { kReadBufSize = 3840 }; 48 enum { kReadBufSize = 3840 };
49 49
50 ~SyncResourceHandler(); 50 virtual ~SyncResourceHandler();
51 51
52 scoped_refptr<net::IOBuffer> read_buffer_; 52 scoped_refptr<net::IOBuffer> read_buffer_;
53 53
54 SyncLoadResult result_; 54 SyncLoadResult result_;
55 ResourceMessageFilter* filter_; 55 ResourceMessageFilter* filter_;
56 IPC::Message* result_message_; 56 IPC::Message* result_message_;
57 ResourceDispatcherHost* rdh_; 57 ResourceDispatcherHost* rdh_;
58 }; 58 };
59 59
60 #endif // CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ 60 #endif // CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/resource_dispatcher_host.h ('k') | content/browser/resolve_proxy_msg_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698