OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_DISPLAY_DISPLAY_MANAGER_H_ | 5 #ifndef ASH_DISPLAY_DISPLAY_MANAGER_H_ |
6 #define ASH_DISPLAY_DISPLAY_MANAGER_H_ | 6 #define ASH_DISPLAY_DISPLAY_MANAGER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/observer_list.h" | 21 #include "base/observer_list.h" |
22 #include "ui/display/display.h" | 22 #include "ui/display/display.h" |
23 #include "ui/display/display_observer.h" | 23 #include "ui/display/display_observer.h" |
24 #include "ui/display/manager/display_layout.h" | 24 #include "ui/display/manager/display_layout.h" |
25 #include "ui/display/manager/managed_display_info.h" | 25 #include "ui/display/manager/managed_display_info.h" |
26 | 26 |
27 #if defined(OS_CHROMEOS) | 27 #if defined(OS_CHROMEOS) |
28 #include "ui/display/chromeos/display_configurator.h" | 28 #include "ui/display/chromeos/display_configurator.h" |
29 #endif | 29 #endif |
30 | 30 |
31 namespace aura { | |
32 class Window; | |
33 } | |
34 | |
35 namespace chromeos { | 31 namespace chromeos { |
36 class DisplayNotificationsTest; | 32 class DisplayNotificationsTest; |
37 } | 33 } |
38 | 34 |
39 namespace display { | 35 namespace display { |
40 class DisplayLayoutStore; | 36 class DisplayLayoutStore; |
41 class DisplayObserver; | 37 class DisplayObserver; |
42 class Screen; | 38 class Screen; |
43 } | 39 } |
44 | 40 |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 base::ObserverList<display::DisplayObserver> observers_; | 478 base::ObserverList<display::DisplayObserver> observers_; |
483 | 479 |
484 base::WeakPtrFactory<DisplayManager> weak_ptr_factory_; | 480 base::WeakPtrFactory<DisplayManager> weak_ptr_factory_; |
485 | 481 |
486 DISALLOW_COPY_AND_ASSIGN(DisplayManager); | 482 DISALLOW_COPY_AND_ASSIGN(DisplayManager); |
487 }; | 483 }; |
488 | 484 |
489 } // namespace ash | 485 } // namespace ash |
490 | 486 |
491 #endif // ASH_DISPLAY_DISPLAY_MANAGER_H_ | 487 #endif // ASH_DISPLAY_DISPLAY_MANAGER_H_ |
OLD | NEW |