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

Unified Diff: cloud_print/gcp20/prototype/cloud_print_request.h

Issue 1100633004: Update {virtual,override} to follow C++11 style in cloud_print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile. Created 5 years, 8 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
« no previous file with comments | « no previous file | cloud_print/gcp20/prototype/cloud_print_requester.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/gcp20/prototype/cloud_print_request.h
diff --git a/cloud_print/gcp20/prototype/cloud_print_request.h b/cloud_print/gcp20/prototype/cloud_print_request.h
index 681299f582ee625153201e1e244498f8b5d412d6..5cd83577c0cd8a4edc6fff5ac9df18c0066bc3cf 100644
--- a/cloud_print/gcp20/prototype/cloud_print_request.h
+++ b/cloud_print/gcp20/prototype/cloud_print_request.h
@@ -38,7 +38,7 @@ class CloudPrintRequest : public net::URLFetcherDelegate,
virtual void OnFetchTimeoutReached() = 0;
};
- virtual ~CloudPrintRequest();
+ ~CloudPrintRequest() override;
// Creates GET request.
static scoped_ptr<CloudPrintRequest> CreateGet(const GURL& url,
@@ -63,7 +63,7 @@ class CloudPrintRequest : public net::URLFetcherDelegate,
Delegate* delegate);
// net::URLFetcherDelegate methods:
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// Method for handling timeout.
void OnRequestTimeout();
« no previous file with comments | « no previous file | cloud_print/gcp20/prototype/cloud_print_requester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698