diff options
Diffstat (limited to 'chrome/browser/ui/ash/launcher/browser_status_monitor.cc')
-rw-r--r-- | chrome/browser/ui/ash/launcher/browser_status_monitor.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/ui/ash/launcher/browser_status_monitor.cc b/chrome/browser/ui/ash/launcher/browser_status_monitor.cc index a2a296f..36b1935 100644 --- a/chrome/browser/ui/ash/launcher/browser_status_monitor.cc +++ b/chrome/browser/ui/ash/launcher/browser_status_monitor.cc @@ -224,6 +224,11 @@ void BrowserStatusMonitor::OnBrowserRemoved(Browser* browser) { UpdateBrowserItemState(); } +void BrowserStatusMonitor::OnDisplayBoundsChanged( + const gfx::Display& display) { + // Do nothing here. +} + void BrowserStatusMonitor::OnDisplayAdded(const gfx::Display& new_display) { // Add a new RootWindow and its ActivationClient to observed list. aura::Window* root_window = ash::Shell::GetInstance()-> @@ -244,11 +249,6 @@ void BrowserStatusMonitor::OnDisplayRemoved(const gfx::Display& old_display) { // Do nothing here. } -void BrowserStatusMonitor::OnDisplayMetricsChanged(const gfx::Display&, - uint32_t) { - // Do nothing here. -} - void BrowserStatusMonitor::ActiveTabChanged(content::WebContents* old_contents, content::WebContents* new_contents, int index, |