| Index: ui/aura/client/default_capture_client.h
|
| diff --git a/ui/aura/client/default_capture_client.h b/ui/aura/client/default_capture_client.h
|
| index 41194af0eb19c97e5b3239a6d03094388418fc37..c9369a9f2b39bbd962d28ac443650483b025dfab 100644
|
| --- a/ui/aura/client/default_capture_client.h
|
| +++ b/ui/aura/client/default_capture_client.h
|
| @@ -16,14 +16,14 @@ namespace client {
|
| class AURA_EXPORT DefaultCaptureClient : public client::CaptureClient {
|
| public:
|
| explicit DefaultCaptureClient(Window* root_window);
|
| - virtual ~DefaultCaptureClient();
|
| + ~DefaultCaptureClient() override;
|
|
|
| private:
|
| // Overridden from client::CaptureClient:
|
| - virtual void SetCapture(Window* window) override;
|
| - virtual void ReleaseCapture(Window* window) override;
|
| - virtual Window* GetCaptureWindow() override;
|
| - virtual Window* GetGlobalCaptureWindow() override;
|
| + void SetCapture(Window* window) override;
|
| + void ReleaseCapture(Window* window) override;
|
| + Window* GetCaptureWindow() override;
|
| + Window* GetGlobalCaptureWindow() override;
|
|
|
| Window* root_window_;
|
| Window* capture_window_;
|
|
|