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

Unified Diff: content/browser/udev_linux.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/udev_linux.h
diff --git a/content/browser/udev_linux.h b/content/browser/udev_linux.h
index 5ced8ce315d8b9e3a613234c7a97da770df71139..0160fd3241b3f3ce2ee4855fa586d25bd6676eee 100644
--- a/content/browser/udev_linux.h
+++ b/content/browser/udev_linux.h
@@ -71,16 +71,15 @@ class UdevLinux : public base::MessagePumpLibevent::Watcher {
// Calls |callback| upon device change events.
UdevLinux(const std::vector<UdevMonitorFilter>& filters,
const UdevNotificationCallback& callback);
- virtual ~UdevLinux();
-
+ ~UdevLinux() override;
// Returns the udev handle to be passed into other udev_*() functions.
udev* udev_handle();
private:
// base::MessagePump:Libevent::Watcher implementation.
- virtual void OnFileCanReadWithoutBlocking(int fd) override;
- virtual void OnFileCanWriteWithoutBlocking(int fd) override;
+ void OnFileCanReadWithoutBlocking(int fd) override;
+ void OnFileCanWriteWithoutBlocking(int fd) override;
// libudev-related items, the main context, and the monitoring context to be
// notified about changes to device states.
« no previous file with comments | « content/browser/transition_request_manager_unittest.cc ('k') | content/browser/webui/web_ui_data_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698