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

Unified Diff: chrome/browser/ui/cocoa/select_file_dialog_mac.mm

Issue 10067033: RefCounted types should not have public destructors, chrome/browser/ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | « chrome/browser/ui/cocoa/first_run_dialog.mm ('k') | chrome/browser/ui/fullscreen_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/select_file_dialog_mac.mm
diff --git a/chrome/browser/ui/cocoa/select_file_dialog_mac.mm b/chrome/browser/ui/cocoa/select_file_dialog_mac.mm
index 37cbb83ceb4bdebe6e8b6da4a69c5a81ec54549c..6d05e7c84ba9fd1d2399f3e523be82f1759d397b 100644
--- a/chrome/browser/ui/cocoa/select_file_dialog_mac.mm
+++ b/chrome/browser/ui/cocoa/select_file_dialog_mac.mm
@@ -54,7 +54,6 @@ class SelectFileDialogImpl;
class SelectFileDialogImpl : public SelectFileDialog {
public:
explicit SelectFileDialogImpl(Listener* listener);
- virtual ~SelectFileDialogImpl();
// BaseShellDialog implementation.
virtual bool IsRunning(gfx::NativeWindow parent_window) const;
@@ -85,9 +84,11 @@ class SelectFileDialogImpl : public SelectFileDialog {
int file_type_index,
const FilePath::StringType& default_extension,
gfx::NativeWindow owning_window,
- void* params);
+ void* params) OVERRIDE;
Nico 2012/04/13 17:09:11 Huh, I thought avi had made the plugin check for m
Ryan Sleevi 2012/04/13 17:23:04 No. That's why I split the plugin change into two
private:
+ virtual ~SelectFileDialogImpl();
+
// Gets the accessory view for the save dialog.
NSView* GetAccessoryView(const FileTypeInfo* file_types,
int file_type_index);
« no previous file with comments | « chrome/browser/ui/cocoa/first_run_dialog.mm ('k') | chrome/browser/ui/fullscreen_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698