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

Side by Side Diff: chrome/browser/ui/cocoa/repost_form_warning_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_
6 #define CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_ 6 #define CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
(...skipping 11 matching lines...) Expand all
22 // Convenience method that creates a new |RepostFormWarningController| and 22 // Convenience method that creates a new |RepostFormWarningController| and
23 // then a new |RepostFormWarningMac| from that. 23 // then a new |RepostFormWarningMac| from that.
24 static RepostFormWarningMac* Create(NSWindow* parent, 24 static RepostFormWarningMac* Create(NSWindow* parent,
25 TabContents* tab_contents); 25 TabContents* tab_contents);
26 26
27 RepostFormWarningMac(NSWindow* parent, 27 RepostFormWarningMac(NSWindow* parent,
28 RepostFormWarningController* controller, 28 RepostFormWarningController* controller,
29 TabContents* tab_contents); 29 TabContents* tab_contents);
30 30
31 // ConstrainedWindowDelegateMacSystemSheet methods: 31 // ConstrainedWindowDelegateMacSystemSheet methods:
32 virtual void DeleteDelegate(); 32 virtual void DeleteDelegate() OVERRIDE;
33 33
34 private: 34 private:
35 virtual ~RepostFormWarningMac(); 35 virtual ~RepostFormWarningMac();
36 36
37 scoped_ptr<RepostFormWarningController> controller_; 37 scoped_ptr<RepostFormWarningController> controller_;
38 TabContents* tab_contents_; 38 TabContents* tab_contents_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningMac); 40 DISALLOW_COPY_AND_ASSIGN(RepostFormWarningMac);
41 }; 41 };
42 42
43 #endif // CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_ 43 #endif // CHROME_BROWSER_UI_COCOA_REPOST_FORM_WARNING_MAC_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h ('k') | chrome/browser/ui/cocoa/status_icons/status_icon_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698