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

Unified Diff: chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc

Issue 10392152: RefCounted types should not have public destructors, Linux fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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
Index: chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc
diff --git a/chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc b/chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc
index 27ef28ccf4402ad80eafedd5a0da6253801e6942..3544eb3170c3954f3a45505bb9937e8f3dee91d0 100644
--- a/chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc
+++ b/chrome/browser/ui/gtk/select_file_dialog_impl_gtk.cc
@@ -30,6 +30,8 @@ class SelectFileDialogImplGTK : public SelectFileDialogImpl {
explicit SelectFileDialogImplGTK(Listener* listener);
protected:
+ virtual ~SelectFileDialogImplGTK();
+
// SelectFileDialog implementation.
// |params| is user data we pass back via the Listener interface.
virtual void SelectFileImpl(Type type,
@@ -42,8 +44,6 @@ class SelectFileDialogImplGTK : public SelectFileDialogImpl {
void* params) OVERRIDE;
private:
- virtual ~SelectFileDialogImplGTK();
-
virtual bool HasMultipleFileTypeChoicesImpl() OVERRIDE;
// Add the filters from |file_types_| to |chooser|.

Powered by Google App Engine
This is Rietveld 408576698