| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ | 5 #ifndef ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ |
| 6 #define ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ | 6 #define ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/display/display_controller.h" | 9 #include "ash/display/display_controller.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
| 13 #include "ui/gfx/display_observer.h" | 13 #include "ui/gfx/display_observer.h" |
| 14 #include "ui/gfx/size.h" | 14 #include "ui/gfx/geometry/size.h" |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 FORWARD_DECLARE_TEST(DisplayPreferencesTest, PreventStore); | 17 FORWARD_DECLARE_TEST(DisplayPreferencesTest, PreventStore); |
| 18 } // namespace chromeos | 18 } // namespace chromeos |
| 19 | 19 |
| 20 namespace views { | 20 namespace views { |
| 21 class Label; | 21 class Label; |
| 22 class Widget; | 22 class Widget; |
| 23 } // namespace views | 23 } // namespace views |
| 24 | 24 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 static void SuppressTimerForTest(); | 97 static void SuppressTimerForTest(); |
| 98 | 98 |
| 99 scoped_ptr<ResolutionChangeInfo> change_info_; | 99 scoped_ptr<ResolutionChangeInfo> change_info_; |
| 100 | 100 |
| 101 DISALLOW_COPY_AND_ASSIGN(ResolutionNotificationController); | 101 DISALLOW_COPY_AND_ASSIGN(ResolutionNotificationController); |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace ash | 104 } // namespace ash |
| 105 | 105 |
| 106 #endif // ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ | 106 #endif // ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ |
| OLD | NEW |