| 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_TEST_DISPLAY_MANAGER_TEST_API_H_ | 5 #ifndef ASH_TEST_DISPLAY_MANAGER_TEST_API_H_ |
| 6 #define ASH_TEST_DISPLAY_MANAGER_TEST_API_H_ | 6 #define ASH_TEST_DISPLAY_MANAGER_TEST_API_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "ui/display/display_constants.h" | 12 #include "ui/display/types/display_constants.h" |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 class DisplayManager; | 15 class DisplayManager; |
| 16 | 16 |
| 17 namespace test { | 17 namespace test { |
| 18 | 18 |
| 19 class DisplayManagerTestApi { | 19 class DisplayManagerTestApi { |
| 20 public: | 20 public: |
| 21 explicit DisplayManagerTestApi(DisplayManager* display_manager); | 21 explicit DisplayManagerTestApi(DisplayManager* display_manager); |
| 22 virtual ~DisplayManagerTestApi(); | 22 virtual ~DisplayManagerTestApi(); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 42 private: | 42 private: |
| 43 DisplayManager* display_manager_; // not owned | 43 DisplayManager* display_manager_; // not owned |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(DisplayManagerTestApi); | 45 DISALLOW_COPY_AND_ASSIGN(DisplayManagerTestApi); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace test | 48 } // namespace test |
| 49 } // namespace ash | 49 } // namespace ash |
| 50 | 50 |
| 51 #endif // ASH_TEST_DISPLAY_MANAGER_TEST_API_H_ | 51 #endif // ASH_TEST_DISPLAY_MANAGER_TEST_API_H_ |
| OLD | NEW |