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

Unified Diff: ui/views/widget/desktop_aura/desktop_capture_client.h

Issue 678073003: Standardize usage of virtual/override/final specifiers. (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 | « no previous file | ui/views/widget/desktop_aura/desktop_cursor_loader_updater_auralinux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/desktop_aura/desktop_capture_client.h
diff --git a/ui/views/widget/desktop_aura/desktop_capture_client.h b/ui/views/widget/desktop_aura/desktop_capture_client.h
index 26c21d9acf048c9f25f682e74b3c6df501ac5104..6c5ce7b9ece6457a470f963f0596af30ce3e36ad 100644
--- a/ui/views/widget/desktop_aura/desktop_capture_client.h
+++ b/ui/views/widget/desktop_aura/desktop_capture_client.h
@@ -35,13 +35,13 @@ namespace views {
class VIEWS_EXPORT DesktopCaptureClient : public aura::client::CaptureClient {
public:
explicit DesktopCaptureClient(aura::Window* root);
- virtual ~DesktopCaptureClient();
+ ~DesktopCaptureClient() override;
// Overridden from aura::client::CaptureClient:
- virtual void SetCapture(aura::Window* window) override;
- virtual void ReleaseCapture(aura::Window* window) override;
- virtual aura::Window* GetCaptureWindow() override;
- virtual aura::Window* GetGlobalCaptureWindow() override;
+ void SetCapture(aura::Window* window) override;
+ void ReleaseCapture(aura::Window* window) override;
+ aura::Window* GetCaptureWindow() override;
+ aura::Window* GetGlobalCaptureWindow() override;
private:
typedef std::set<DesktopCaptureClient*> CaptureClients;
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_cursor_loader_updater_auralinux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698