OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_TEST_ASH_TEST_IMPL_H_ | 5 #ifndef ASH_TEST_ASH_TEST_IMPL_H_ |
6 #define ASH_COMMON_TEST_ASH_TEST_IMPL_H_ | 6 #define ASH_TEST_ASH_TEST_IMPL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "ui/display/display_layout.h" | 11 #include "ui/display/display_layout.h" |
12 #include "ui/views/widget/widget.h" | 12 #include "ui/views/widget/widget.h" |
13 #include "ui/wm/public/window_types.h" | 13 #include "ui/wm/public/window_types.h" |
14 | 14 |
15 namespace display { | 15 namespace display { |
16 class Display; | 16 class Display; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 display::DisplayPlacement::Position position, | 50 display::DisplayPlacement::Position position, |
51 int offset) = 0; | 51 int offset) = 0; |
52 virtual void ConfigureWidgetInitParamsForDisplay( | 52 virtual void ConfigureWidgetInitParamsForDisplay( |
53 WmWindow* window, | 53 WmWindow* window, |
54 views::Widget::InitParams* init_params) = 0; | 54 views::Widget::InitParams* init_params) = 0; |
55 virtual void AddTransientChild(WmWindow* parent, WmWindow* window) = 0; | 55 virtual void AddTransientChild(WmWindow* parent, WmWindow* window) = 0; |
56 }; | 56 }; |
57 | 57 |
58 } // namespace ash | 58 } // namespace ash |
59 | 59 |
60 #endif // ASH_COMMON_TEST_ASH_TEST_IMPL_H_ | 60 #endif // ASH_TEST_ASH_TEST_IMPL_H_ |
OLD | NEW |