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

Unified Diff: chrome/browser/ui/cocoa/constrained_window_mac.h

Issue 8603006: Add OVERRIDE to chrome/browser/ui/cocoa/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
Index: chrome/browser/ui/cocoa/constrained_window_mac.h
diff --git a/chrome/browser/ui/cocoa/constrained_window_mac.h b/chrome/browser/ui/cocoa/constrained_window_mac.h
index d5ded4d9ed29e402a2305ac261deb99017ff5413..ca28fda706472ec35039aeeee23583c012b1ebd2 100644
--- a/chrome/browser/ui/cocoa/constrained_window_mac.h
+++ b/chrome/browser/ui/cocoa/constrained_window_mac.h
@@ -69,7 +69,7 @@ class ConstrainedWindowMacDelegateSystemSheet
private:
virtual void RunSheet(GTMWindowSheetController* sheetController,
- NSView* view);
+ NSView* view) OVERRIDE;
scoped_nsobject<id> systemSheet_;
scoped_nsobject<id> delegate_;
SEL didEndSelector_;
@@ -92,7 +92,7 @@ class ConstrainedWindowMacDelegateCustomSheet
private:
virtual void RunSheet(GTMWindowSheetController* sheetController,
- NSView* view);
+ NSView* view) OVERRIDE;
scoped_nsobject<NSWindow> customSheet_;
scoped_nsobject<id> delegate_;
SEL didEndSelector_;
@@ -113,8 +113,8 @@ class ConstrainedWindowMac : public ConstrainedWindow {
virtual ~ConstrainedWindowMac();
// Overridden from ConstrainedWindow:
- virtual void ShowConstrainedWindow();
- virtual void CloseConstrainedWindow();
+ virtual void ShowConstrainedWindow() OVERRIDE;
+ virtual void CloseConstrainedWindow() OVERRIDE;
// Returns the TabContentsWrapper that constrains this Constrained Window.
TabContentsWrapper* owner() const { return wrapper_; }
« no previous file with comments | « chrome/browser/ui/cocoa/command_observer_bridge.h ('k') | chrome/browser/ui/cocoa/content_settings/collected_cookies_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698