| 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_DISPLAY_MANAGER_TEST_API_H_ | 5 #ifndef UI_DISPLAY_TEST_DISPLAY_MANAGER_TEST_API_H_ |
| 6 #define UI_DISPLAY_TEST_DISPLAY_MANAGER_TEST_API_H_ | 6 #define UI_DISPLAY_TEST_DISPLAY_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.h" | 15 #include "ui/display/display.h" |
| 16 #include "ui/display/display_export.h" | 16 #include "ui/display/display_export.h" |
| 17 #include "ui/display/manager/display_layout.h" | 17 #include "ui/display/display_layout.h" |
| 18 #include "ui/display/types/display_constants.h" | 18 #include "ui/display/types/display_constants.h" |
| 19 | 19 |
| 20 namespace gfx { | 20 namespace gfx { |
| 21 class Size; | 21 class Size; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace display { | 24 namespace display { |
| 25 class DisplayManager; | 25 class DisplayManager; |
| 26 class ManagedDisplayInfo; | 26 class ManagedDisplayInfo; |
| 27 | 27 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 int offset); | 106 int offset); |
| 107 | 107 |
| 108 // Creates the DisplayIdList from ints. | 108 // Creates the DisplayIdList from ints. |
| 109 DISPLAY_EXPORT DisplayIdList CreateDisplayIdList2(int64_t id1, int64_t id2); | 109 DISPLAY_EXPORT DisplayIdList CreateDisplayIdList2(int64_t id1, int64_t id2); |
| 110 DISPLAY_EXPORT DisplayIdList CreateDisplayIdListN(size_t count, ...); | 110 DISPLAY_EXPORT DisplayIdList CreateDisplayIdListN(size_t count, ...); |
| 111 | 111 |
| 112 } // namespace test | 112 } // namespace test |
| 113 } // namespace display | 113 } // namespace display |
| 114 | 114 |
| 115 #endif // UI_DISPLAY_TEST_DISPLAY_MANAGER_TEST_API_H_ | 115 #endif // UI_DISPLAY_TEST_DISPLAY_MANAGER_TEST_API_H_ |
| OLD | NEW |