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

Unified Diff: google_apis/drive/base_requests_unittest.cc

Issue 649283003: Standardize usage of virtual/override/final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « google_apis/drive/base_requests.h ('k') | google_apis/drive/drive_api_requests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/base_requests_unittest.cc
diff --git a/google_apis/drive/base_requests_unittest.cc b/google_apis/drive/base_requests_unittest.cc
index 3865eee763027782109042cf40bee0ee31263bf5..e4e918b795bad5993c04c9625143effaf2dab83f 100644
--- a/google_apis/drive/base_requests_unittest.cc
+++ b/google_apis/drive/base_requests_unittest.cc
@@ -35,15 +35,14 @@ class FakeUrlFetchRequest : public UrlFetchRequestBase {
url_(url) {
}
- virtual ~FakeUrlFetchRequest() {
- }
+ ~FakeUrlFetchRequest() override {}
protected:
- virtual GURL GetURL() const override { return url_; }
- virtual void ProcessURLFetchResults(const net::URLFetcher* source) override {
+ GURL GetURL() const override { return url_; }
+ void ProcessURLFetchResults(const net::URLFetcher* source) override {
callback_.Run(GetErrorCode());
}
- virtual void RunCallbackOnPrematureFailure(GDataErrorCode code) override {
+ void RunCallbackOnPrematureFailure(GDataErrorCode code) override {
callback_.Run(code);
}
« no previous file with comments | « google_apis/drive/base_requests.h ('k') | google_apis/drive/drive_api_requests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698