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

Unified Diff: components/rappor/log_uploader.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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 | « components/rappor/byte_vector_utils.h ('k') | components/rappor/log_uploader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/rappor/log_uploader.h
diff --git a/components/rappor/log_uploader.h b/components/rappor/log_uploader.h
index 18661b5ce586a22e131076e90e926f670824b47e..f6219bb11c89fcf6268ec548794616e013d65841 100644
--- a/components/rappor/log_uploader.h
+++ b/components/rappor/log_uploader.h
@@ -39,7 +39,7 @@ class LogUploader : public net::URLFetcherDelegate {
// If the object is destroyed (or the program terminates) while logs are
// queued, the logs are lost.
- virtual ~LogUploader();
+ ~LogUploader() override;
// Adds an entry to the queue of logs to be uploaded to the server. The
// uploader makes no assumptions about the format of |log| and simply sends
@@ -64,7 +64,7 @@ class LogUploader : public net::URLFetcherDelegate {
private:
// Implements net::URLFetcherDelegate. Called after transmission completes
// (whether successful or not).
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// Called when the upload is completed.
void OnUploadFinished(bool server_is_healthy, bool more_logs_remaining);
« no previous file with comments | « components/rappor/byte_vector_utils.h ('k') | components/rappor/log_uploader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698