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

Unified Diff: content/browser/device_monitor_udev.h

Issue 678073006: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bogus formatting 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: content/browser/device_monitor_udev.h
diff --git a/content/browser/device_monitor_udev.h b/content/browser/device_monitor_udev.h
index a5bd5d65bf1d3907a2f6d87dd765ee98f9443a8b..4a879ef5d4d2c4c51db7f449182ca450ce97f8e5 100644
--- a/content/browser/device_monitor_udev.h
+++ b/content/browser/device_monitor_udev.h
@@ -23,13 +23,13 @@ class UdevLinux;
class DeviceMonitorLinux : public base::MessageLoop::DestructionObserver {
public:
DeviceMonitorLinux();
- virtual ~DeviceMonitorLinux();
+ ~DeviceMonitorLinux() override;
private:
// This object is deleted on the UI thread after the IO thread has been
// destroyed. Need to know when IO thread is being destroyed so that
// we can delete udev_.
- virtual void WillDestroyCurrentMessageLoop() override;
+ void WillDestroyCurrentMessageLoop() override;
void Initialize();
void OnDevicesChanged(udev_device* device);
« no previous file with comments | « content/browser/compositor/software_output_device_x11.h ('k') | content/browser/devtools/devtools_http_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698