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

Unified Diff: device/hid/hid_connection_win.cc

Issue 1107433002: Update {virtual,override} to follow C++11 style in device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync and git cl format Created 5 years, 8 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 | « device/hid/hid_connection_win.h ('k') | device/hid/hid_service_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_connection_win.cc
diff --git a/device/hid/hid_connection_win.cc b/device/hid/hid_connection_win.cc
index 47571c78f3e7ca66ac190b1b26440c238e90d3b9..2e5eab24dd63220ddee74081636e4d530bcb44f4 100644
--- a/device/hid/hid_connection_win.cc
+++ b/device/hid/hid_connection_win.cc
@@ -40,10 +40,10 @@ struct PendingHidTransfer : public base::RefCounted<PendingHidTransfer>,
OVERLAPPED* GetOverlapped() { return &overlapped_; }
// Implements base::win::ObjectWatcher::Delegate.
- virtual void OnObjectSignaled(HANDLE object) override;
+ void OnObjectSignaled(HANDLE object) override;
// Implements base::MessageLoop::DestructionObserver
- virtual void WillDestroyCurrentMessageLoop() override;
+ void WillDestroyCurrentMessageLoop() override;
// The buffer isn't used by this object but it's important that a reference
// to it is held until the transfer completes.
@@ -56,7 +56,7 @@ struct PendingHidTransfer : public base::RefCounted<PendingHidTransfer>,
private:
friend class base::RefCounted<PendingHidTransfer>;
- virtual ~PendingHidTransfer();
+ ~PendingHidTransfer() override;
DISALLOW_COPY_AND_ASSIGN(PendingHidTransfer);
};
« no previous file with comments | « device/hid/hid_connection_win.h ('k') | device/hid/hid_service_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698