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

Unified Diff: google_apis/drive/gdata_wapi_requests.h

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/gdata_wapi_parser.h ('k') | google_apis/drive/request_sender_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/gdata_wapi_requests.h
diff --git a/google_apis/drive/gdata_wapi_requests.h b/google_apis/drive/gdata_wapi_requests.h
index aa4e69fe2edb86ce6142f89c2eba33f8298b08a1..4a9962bae854a8953c98962fbf5e562a34c87e93 100644
--- a/google_apis/drive/gdata_wapi_requests.h
+++ b/google_apis/drive/gdata_wapi_requests.h
@@ -28,13 +28,13 @@ class GetResourceEntryRequest : public UrlFetchRequestBase {
const std::string& resource_id,
const GURL& embed_origin,
const GetResourceEntryCallback& callback);
- virtual ~GetResourceEntryRequest();
+ ~GetResourceEntryRequest() override;
protected:
// UrlFetchRequestBase overrides.
- virtual void ProcessURLFetchResults(const net::URLFetcher* source) override;
- virtual void RunCallbackOnPrematureFailure(GDataErrorCode error) override;
- virtual GURL GetURL() const override;
+ void ProcessURLFetchResults(const net::URLFetcher* source) override;
+ void RunCallbackOnPrematureFailure(GDataErrorCode error) override;
+ GURL GetURL() const override;
private:
void OnDataParsed(GDataErrorCode error, scoped_ptr<ResourceEntry> entry);
« no previous file with comments | « google_apis/drive/gdata_wapi_parser.h ('k') | google_apis/drive/request_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698