| 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_; }
|
|
|