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

Unified Diff: chrome/utility/image_writer/image_writer_handler.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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
Index: chrome/utility/image_writer/image_writer_handler.h
diff --git a/chrome/utility/image_writer/image_writer_handler.h b/chrome/utility/image_writer/image_writer_handler.h
index 32b7576f261b5cb03ecd1ab4442a68622fc75675..f05c96ba803bcfc811bc4e3cda8de3ad70106336 100644
--- a/chrome/utility/image_writer/image_writer_handler.h
+++ b/chrome/utility/image_writer/image_writer_handler.h
@@ -22,7 +22,7 @@ namespace image_writer {
class ImageWriterHandler : public UtilityMessageHandler {
public:
ImageWriterHandler();
- virtual ~ImageWriterHandler();
+ ~ImageWriterHandler() override;
// Methods for sending the different messages back to the browser process.
// Generally should be called by chrome::image_writer::ImageWriter.
@@ -32,7 +32,7 @@ class ImageWriterHandler : public UtilityMessageHandler {
virtual void SendProgress(int64 progress);
private:
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// Small wrapper for sending on the UtilityProcess.
void Send(IPC::Message* msg);
« no previous file with comments | « chrome/utility/extensions/extensions_handler.h ('k') | chrome/utility/image_writer/image_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698