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

Unified Diff: chrome/browser/ui/panels/display_settings_provider.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: trybots 4 Created 7 years, 10 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/panels/display_settings_provider.h
diff --git a/chrome/browser/ui/panels/display_settings_provider.h b/chrome/browser/ui/panels/display_settings_provider.h
index 61a7a9970c595e1a98f38f5b061bb07133d056e5..bad450251b7928670d133682841d8803fe462a22 100644
--- a/chrome/browser/ui/panels/display_settings_provider.h
+++ b/chrome/browser/ui/panels/display_settings_provider.h
@@ -32,17 +32,23 @@ class DisplaySettingsProvider {
class DisplayAreaObserver {
public:
+ virtual ~DisplayAreaObserver() { }
+
virtual void OnDisplayAreaChanged(const gfx::Rect& display_area) = 0;
};
class DesktopBarObserver {
public:
+ virtual ~DesktopBarObserver() { }
+
virtual void OnAutoHidingDesktopBarVisibilityChanged(
DesktopBarAlignment alignment, DesktopBarVisibility visibility) = 0;
};
class FullScreenObserver {
public:
+ virtual ~FullScreenObserver() { }
+
virtual void OnFullScreenModeChanged(bool is_full_screen) = 0;
};
« no previous file with comments | « chrome/browser/ui/gtk/avatar_menu_item_gtk.h ('k') | chrome/browser/ui/website_settings/permission_menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698