| 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 UI_DISPLAY_TEST_MANAGER_TEST_API_H_ | 5 #ifndef UI_DISPLAY_TEST_MANAGER_TEST_API_H_ |
| 6 #define UI_DISPLAY_TEST_MANAGER_TEST_API_H_ | 6 #define UI_DISPLAY_TEST_MANAGER_TEST_API_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "ui/display/display_export.h" | 15 #include "ui/display/display_export.h" |
| 16 #include "ui/display/manager/display_layout.h" | 16 #include "ui/display/manager/display_layout.h" |
| 17 #include "ui/display/types/display_constants.h" | 17 #include "ui/display/types/display_constants.h" |
| 18 | 18 |
| 19 namespace gfx { | 19 namespace gfx { |
| 20 class Point; | |
| 21 class Size; | 20 class Size; |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace ui { | |
| 25 namespace test { | |
| 26 class EventGenerator; | |
| 27 } | |
| 28 } | |
| 29 | |
| 30 namespace display { | 23 namespace display { |
| 31 class DisplayManager; | 24 class DisplayManager; |
| 32 class ManagedDisplayInfo; | 25 class ManagedDisplayInfo; |
| 33 | 26 |
| 34 namespace test { | 27 namespace test { |
| 35 | 28 |
| 36 class DISPLAY_EXPORT DisplayManagerTestApi { | 29 class DISPLAY_EXPORT DisplayManagerTestApi { |
| 37 public: | 30 public: |
| 38 explicit DisplayManagerTestApi(DisplayManager* display_manager); | 31 explicit DisplayManagerTestApi(DisplayManager* display_manager); |
| 39 virtual ~DisplayManagerTestApi(); | 32 virtual ~DisplayManagerTestApi(); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 103 |
| 111 // Creates the DisplayIdList from ints. | 104 // Creates the DisplayIdList from ints. |
| 112 DISPLAY_EXPORT display::DisplayIdList CreateDisplayIdList2(int64_t id1, | 105 DISPLAY_EXPORT display::DisplayIdList CreateDisplayIdList2(int64_t id1, |
| 113 int64_t id2); | 106 int64_t id2); |
| 114 DISPLAY_EXPORT display::DisplayIdList CreateDisplayIdListN(size_t count, ...); | 107 DISPLAY_EXPORT display::DisplayIdList CreateDisplayIdListN(size_t count, ...); |
| 115 | 108 |
| 116 } // namespace test | 109 } // namespace test |
| 117 } // namespace display | 110 } // namespace display |
| 118 | 111 |
| 119 #endif // UI_DISPLAY_TEST_MANAGER_TEST_API_H_ | 112 #endif // UI_DISPLAY_TEST_MANAGER_TEST_API_H_ |
| OLD | NEW |