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

Unified Diff: content/browser/tracing/trace_uploader.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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 | « content/browser/tracing/trace_message_filter.h ('k') | content/browser/tracing/tracing_controller_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tracing/trace_uploader.h
diff --git a/content/browser/tracing/trace_uploader.h b/content/browser/tracing/trace_uploader.h
index bfc4385018283e3a5aea1d52628cb44860624d62..323a4c54668b12f6f6fabbb7f98c6919fa09a259 100644
--- a/content/browser/tracing/trace_uploader.h
+++ b/content/browser/tracing/trace_uploader.h
@@ -43,12 +43,13 @@ class TraceUploader : public net::URLFetcherDelegate {
const std::string& version,
const std::string& upload_url,
net::URLRequestContextGetter* request_context);
- virtual ~TraceUploader();
+ ~TraceUploader() override;
// net::URLFetcherDelegate implementation.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
- virtual void OnURLFetchUploadProgress(const net::URLFetcher* source,
- int64 current, int64 total) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchUploadProgress(const net::URLFetcher* source,
+ int64 current,
+ int64 total) override;
// Compresses and uploads the given file contents.
void DoUpload(const std::string& file_contents,
« no previous file with comments | « content/browser/tracing/trace_message_filter.h ('k') | content/browser/tracing/tracing_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698