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

Unified Diff: content/browser/loader/resource_dispatcher_host_unittest.cc

Issue 12210030: Linux/ChromeOS Chromium style checker cleanup, content/ edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
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_ &&
« no previous file with comments | « content/browser/loader/buffered_resource_handler.cc ('k') | content/browser/media/webrtc_internals_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698