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

Unified Diff: ui/views/controls/native/native_view_host_mac.h

Issue 850843003: MacViews: Remove redundant virtuals in NativeWidgetMac and co. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20141229-MacViews-bringup2
Patch Set: format Created 5 years, 11 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 | « ui/views/controls/menu/menu_runner_impl_cocoa.h ('k') | ui/views/event_monitor_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/native/native_view_host_mac.h
diff --git a/ui/views/controls/native/native_view_host_mac.h b/ui/views/controls/native/native_view_host_mac.h
index 6880170f6148ae03989bc0b93a778e98a3828a48..5bd61ea77e791d688005cb76be940523670ebb38 100644
--- a/ui/views/controls/native/native_view_host_mac.h
+++ b/ui/views/controls/native/native_view_host_mac.h
@@ -17,21 +17,21 @@ class NativeViewHost;
class VIEWS_EXPORT NativeViewHostMac : public NativeViewHostWrapper {
public:
explicit NativeViewHostMac(NativeViewHost* host);
- virtual ~NativeViewHostMac();
+ ~NativeViewHostMac() override;
// Overridden from NativeViewHostWrapper:
- virtual void AttachNativeView() override;
- virtual void NativeViewDetaching(bool destroyed) override;
- virtual void AddedToWidget() override;
- virtual void RemovedFromWidget() override;
- virtual void InstallClip(int x, int y, int w, int h) override;
- virtual bool HasInstalledClip() override;
- virtual void UninstallClip() override;
- virtual void ShowWidget(int x, int y, int w, int h) override;
- virtual void HideWidget() override;
- virtual void SetFocus() override;
- virtual gfx::NativeViewAccessible GetNativeViewAccessible() override;
- virtual gfx::NativeCursor GetCursor(int x, int y) override;
+ void AttachNativeView() override;
+ void NativeViewDetaching(bool destroyed) override;
+ void AddedToWidget() override;
+ void RemovedFromWidget() override;
+ void InstallClip(int x, int y, int w, int h) override;
+ bool HasInstalledClip() override;
+ void UninstallClip() override;
+ void ShowWidget(int x, int y, int w, int h) override;
+ void HideWidget() override;
+ void SetFocus() override;
+ gfx::NativeViewAccessible GetNativeViewAccessible() override;
+ gfx::NativeCursor GetCursor(int x, int y) override;
private:
// Our associated NativeViewHost. Owns this.
« no previous file with comments | « ui/views/controls/menu/menu_runner_impl_cocoa.h ('k') | ui/views/event_monitor_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698