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

Unified Diff: google_apis/drive/gdata_wapi_parser.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/dummy_auth_service.h ('k') | google_apis/drive/gdata_wapi_requests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/gdata_wapi_parser.h
diff --git a/google_apis/drive/gdata_wapi_parser.h b/google_apis/drive/gdata_wapi_parser.h
index f7bce81b6dc3c6f89191e0325cf9b60163c65f52..5d2ec50f18492b1fb0333b19e499ac82c8bf00e6 100644
--- a/google_apis/drive/gdata_wapi_parser.h
+++ b/google_apis/drive/gdata_wapi_parser.h
@@ -317,7 +317,7 @@ class ResourceEntry : public CommonMetadata {
ENTRY_KIND_FILE
};
ResourceEntry();
- virtual ~ResourceEntry();
+ ~ResourceEntry() override;
// Extracts "entry" dictionary from the JSON value, and parse the contents,
// using CreateFrom(). Returns NULL on failure. The input JSON data, coming
@@ -517,7 +517,7 @@ class ResourceEntry : public CommonMetadata {
class ResourceList : public CommonMetadata {
public:
ResourceList();
- virtual ~ResourceList();
+ ~ResourceList() override;
// Extracts "feed" dictionary from the JSON value, and parse the contents,
// using CreateFrom(). Returns NULL on failure. The input JSON data, coming
« no previous file with comments | « google_apis/drive/dummy_auth_service.h ('k') | google_apis/drive/gdata_wapi_requests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698