| Index: chrome/browser/ui/ash/launcher/browser_status_monitor.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/browser_status_monitor.cc b/chrome/browser/ui/ash/launcher/browser_status_monitor.cc
|
| index f10792cb08257a9bcb6ab4bfa4968a64dad7231e..bd00ee84aa3974f23008d115f3a2f2ca9a89c673 100644
|
| --- a/chrome/browser/ui/ash/launcher/browser_status_monitor.cc
|
| +++ b/chrome/browser/ui/ash/launcher/browser_status_monitor.cc
|
| @@ -227,11 +227,6 @@ 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()->
|
| @@ -252,6 +247,11 @@ void BrowserStatusMonitor::OnDisplayRemoved(const gfx::Display& old_display) {
|
| // Do nothing here.
|
| }
|
|
|
| +void BrowserStatusMonitor::OnDisplayMetricsChanged(
|
| + const gfx::Display&, DisplayObserver::MetricsType) {
|
| + // Do nothing here.
|
| +}
|
| +
|
| void BrowserStatusMonitor::ActiveTabChanged(content::WebContents* old_contents,
|
| content::WebContents* new_contents,
|
| int index,
|
|
|