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

Unified Diff: mojo/services/native_viewport/platform_viewport_mac.mm

Issue 634483003: replace OVERRIDE and FINAL with override and final in mojo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove compiler_specific.h inclusions 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 | mojo/services/native_viewport/platform_viewport_ozone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/native_viewport/platform_viewport_mac.mm
diff --git a/mojo/services/native_viewport/platform_viewport_mac.mm b/mojo/services/native_viewport/platform_viewport_mac.mm
index 9d1105278169377e35c1576dfa4ce993eb63a38d..40bee95f5154520d32154572132c32460ecc64c2 100644
--- a/mojo/services/native_viewport/platform_viewport_mac.mm
+++ b/mojo/services/native_viewport/platform_viewport_mac.mm
@@ -27,7 +27,7 @@ class PlatformViewportMac : public PlatformViewport {
private:
// Overridden from PlatformViewport:
- virtual void Init(const gfx::Rect& bounds) OVERRIDE {
+ virtual void Init(const gfx::Rect& bounds) override {
[NSApplication sharedApplication];
rect_ = bounds;
@@ -40,32 +40,32 @@ class PlatformViewportMac : public PlatformViewport {
delegate_->OnBoundsChanged(rect_);
}
- virtual void Show() OVERRIDE {
+ virtual void Show() override {
[window_ orderFront:nil];
}
- virtual void Hide() OVERRIDE {
+ virtual void Hide() override {
[window_ orderOut:nil];
}
- virtual void Close() OVERRIDE {
+ virtual void Close() override {
// TODO(beng): perform this in response to NSWindow destruction.
delegate_->OnDestroyed();
}
- virtual gfx::Size GetSize() OVERRIDE {
+ virtual gfx::Size GetSize() override {
return rect_.size();
}
- virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE {
+ virtual void SetBounds(const gfx::Rect& bounds) override {
NOTIMPLEMENTED();
}
- virtual void SetCapture() OVERRIDE {
+ virtual void SetCapture() override {
NOTIMPLEMENTED();
}
- virtual void ReleaseCapture() OVERRIDE {
+ virtual void ReleaseCapture() override {
NOTIMPLEMENTED();
}
« no previous file with comments | « no previous file | mojo/services/native_viewport/platform_viewport_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698