Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / chromeos / display / display_configuration_observer.h
blob8a5e2614f76888e3864f1253b23d05e10dd4d554
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"
12 namespace chromeos {
14 // DisplayConfigurationObserver observes and saves
15 // the change of display configurations.
16 class DisplayConfigurationObserver
17 : public ash::WindowTreeHostManager::Observer {
18 public:
19 DisplayConfigurationObserver();
20 ~DisplayConfigurationObserver() override;
22 protected:
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_