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

Side by Side Diff: chrome/browser/chromeos/display/display_configuration_observer.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_ 6 #define CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_
7 7
8 #include "ash/display/window_tree_host_manager.h" 8 #include "ash/display/window_tree_host_manager.h"
9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/macros.h"
11 11
12 namespace chromeos { 12 namespace chromeos {
13 13
14 // DisplayConfigurationObserver observes and saves 14 // DisplayConfigurationObserver observes and saves
15 // the change of display configurations. 15 // the change of display configurations.
16 class DisplayConfigurationObserver 16 class DisplayConfigurationObserver
17 : public ash::WindowTreeHostManager::Observer { 17 : public ash::WindowTreeHostManager::Observer {
18 public: 18 public:
19 DisplayConfigurationObserver(); 19 DisplayConfigurationObserver();
20 ~DisplayConfigurationObserver() override; 20 ~DisplayConfigurationObserver() override;
21 21
22 protected: 22 protected:
23 // ash::WindowTreeHostManager::Observer overrides: 23 // ash::WindowTreeHostManager::Observer overrides:
24 void OnDisplaysInitialized() override; 24 void OnDisplaysInitialized() override;
25 void OnDisplayConfigurationChanged() override; 25 void OnDisplayConfigurationChanged() override;
26 26
27 DISALLOW_COPY_AND_ASSIGN(DisplayConfigurationObserver); 27 DISALLOW_COPY_AND_ASSIGN(DisplayConfigurationObserver);
28 }; 28 };
29 29
30 } // namespace chromeos 30 } // namespace chromeos
31 31
32 #endif // CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_ 32 #endif // CHROME_BROWSER_CHROMEOS_DISPLAY_DISPLAY_CONFIGURATION_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/device_uma.h ('k') | chrome/browser/chromeos/display/display_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698