Index: content/browser/loader/resource_dispatcher_host_unittest.cc |
=================================================================== |
--- content/browser/loader/resource_dispatcher_host_unittest.cc (revision 181789) |
+++ content/browser/loader/resource_dispatcher_host_unittest.cc (working copy) |
@@ -166,7 +166,7 @@ |
: request_context_(request_context) {} |
virtual net::URLRequestContext* GetRequestContext( |
- ResourceType::Type request_type) { |
+ ResourceType::Type request_type) OVERRIDE { |
return request_context_; |
} |
@@ -193,7 +193,7 @@ |
} |
// ResourceMessageFilter override |
- virtual bool Send(IPC::Message* msg) { |
+ virtual bool Send(IPC::Message* msg) OVERRIDE { |
if (!dest_) |
return false; |
return dest_->Send(msg); |
@@ -237,7 +237,7 @@ |
} |
// Do nothing until you're told to. |
- virtual void Start() {} |
+ virtual void Start() OVERRIDE {} |
// Finish starting a URL request whose job is an instance of |
// URLRequestTestDelayedStartJob. It is illegal to call this routine |
@@ -315,7 +315,7 @@ |
auto_advance) {} |
protected: |
- ~URLRequestTestDelayedCompletionJob() {} |
+ virtual ~URLRequestTestDelayedCompletionJob() {} |
private: |
virtual bool NextReadAsync() OVERRIDE { return true; } |
@@ -370,7 +370,7 @@ |
: was_deleted_(was_deleted) { |
} |
- ~TestUserData() { |
+ virtual ~TestUserData() { |
*was_deleted_ = true; |
} |
@@ -383,7 +383,7 @@ |
public: |
virtual bool ShouldSwapProcessesForRedirect(ResourceContext* resource_context, |
const GURL& current_url, |
- const GURL& new_url) { |
+ const GURL& new_url) OVERRIDE { |
return true; |
} |
}; |
@@ -535,7 +535,7 @@ |
this, browser_context_->GetResourceContext()); |
} |
// IPC::Sender implementation |
- virtual bool Send(IPC::Message* msg) { |
+ virtual bool Send(IPC::Message* msg) OVERRIDE { |
accum_.AddMessage(*msg); |
if (send_data_received_acks_ && |