| Index: webkit/glue/resource_loader_bridge.h
|
| diff --git a/webkit/glue/resource_loader_bridge.h b/webkit/glue/resource_loader_bridge.h
|
| index cb5f5b703c0fac4804542df1847ee97be323c31b..45a6bbe0187a2944068fa1070cebce6e8a0e22fa 100644
|
| --- a/webkit/glue/resource_loader_bridge.h
|
| +++ b/webkit/glue/resource_loader_bridge.h
|
| @@ -294,8 +294,6 @@ class ResourceLoaderBridge {
|
| // for more information.
|
| class Peer {
|
| public:
|
| - virtual ~Peer() {}
|
| -
|
| // Called as upload progress is made.
|
| // note: only for requests with LOAD_ENABLE_UPLOAD_PROGRESS set
|
| virtual void OnUploadProgress(uint64 position, uint64 size) = 0;
|
| @@ -341,6 +339,9 @@ class ResourceLoaderBridge {
|
| const net::URLRequestStatus& status,
|
| const std::string& security_info,
|
| const base::TimeTicks& completion_time) = 0;
|
| +
|
| + protected:
|
| + virtual ~Peer() {}
|
| };
|
|
|
| // use WebKitPlatformSupportImpl::CreateResourceLoader() for construction, but
|
|
|