1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_
8 #include "ash/display/window_tree_host_manager.h"
9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h"
14 // DisplayConfigurationObserver observes and saves
15 // the change of display configurations.
16 class DisplayConfigurationObserver
17 : public ash::WindowTreeHostManager::Observer
{
19 DisplayConfigurationObserver();
20 ~DisplayConfigurationObserver() override
;
23 // ash::WindowTreeHostManager::Observer overrides:
24 void OnDisplaysInitialized() override
;
25 void OnDisplayConfigurationChanged() override
;
27 DISALLOW_COPY_AND_ASSIGN(DisplayConfigurationObserver
);
30 } // namespace chromeos
32 #endif // CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_