diff options
Diffstat (limited to 'chrome/browser/gtk/options')
4 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/gtk/options/content_exception_editor.h b/chrome/browser/gtk/options/content_exception_editor.h index 3de04bf..5d375c6 100644 --- a/chrome/browser/gtk/options/content_exception_editor.h +++ b/chrome/browser/gtk/options/content_exception_editor.h @@ -43,6 +43,7 @@ class ContentExceptionEditor { const HostContentSettingsMap::Pattern& pattern, ContentSetting setting, bool is_off_the_record); + virtual ~ContentExceptionEditor() {} private: // Returns true if we're adding a new item. diff --git a/chrome/browser/gtk/options/languages_page_gtk.cc b/chrome/browser/gtk/options/languages_page_gtk.cc index 59eaacf..4b8d8e3 100644 --- a/chrome/browser/gtk/options/languages_page_gtk.cc +++ b/chrome/browser/gtk/options/languages_page_gtk.cc @@ -42,6 +42,8 @@ GtkWidget* NewComboboxFromModel(ComboboxModel* model) { class AddLanguageDialog { public: AddLanguageDialog(Profile* profile, LanguagesPageGtk* delegate); + virtual ~AddLanguageDialog() {} + private: // Callback for dialog buttons. CHROMEGTK_CALLBACK_1(AddLanguageDialog, void, OnResponse, int); diff --git a/chrome/browser/gtk/options/passwords_exceptions_page_gtk.h b/chrome/browser/gtk/options/passwords_exceptions_page_gtk.h index 5fcee8d..c25060a 100644 --- a/chrome/browser/gtk/options/passwords_exceptions_page_gtk.h +++ b/chrome/browser/gtk/options/passwords_exceptions_page_gtk.h @@ -20,7 +20,7 @@ class PasswordsExceptionsPageGtk { public: explicit PasswordsExceptionsPageGtk(Profile* profile); - ~PasswordsExceptionsPageGtk(); + virtual ~PasswordsExceptionsPageGtk(); GtkWidget* get_page_widget() const { return page_; } diff --git a/chrome/browser/gtk/options/passwords_page_gtk.h b/chrome/browser/gtk/options/passwords_page_gtk.h index 80ff8969..229c55d 100644 --- a/chrome/browser/gtk/options/passwords_page_gtk.h +++ b/chrome/browser/gtk/options/passwords_page_gtk.h @@ -17,7 +17,7 @@ class PasswordsPageGtk { public: explicit PasswordsPageGtk(Profile* profile); - ~PasswordsPageGtk(); + virtual ~PasswordsPageGtk(); GtkWidget* get_page_widget() const { return page_; } |