| 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_COMMON_TEST_ASH_TEST_IMPL_H_ | 
|   6 #define ASH_COMMON_TEST_ASH_TEST_IMPL_H_ |   6 #define ASH_COMMON_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/manager/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; | 
|  17 } |  17 } | 
|  18  |  18  | 
|  19 namespace gfx { |  19 namespace gfx { | 
|  20 class Rect; |  20 class Rect; | 
|  21 } |  21 } | 
| (...skipping 30 matching lines...) Expand all  Loading... | 
|  52       int offset) = 0; |  52       int offset) = 0; | 
|  53   virtual void ConfigureWidgetInitParamsForDisplay( |  53   virtual void ConfigureWidgetInitParamsForDisplay( | 
|  54       WmWindow* window, |  54       WmWindow* window, | 
|  55       views::Widget::InitParams* init_params) = 0; |  55       views::Widget::InitParams* init_params) = 0; | 
|  56   virtual void AddTransientChild(WmWindow* parent, WmWindow* window) = 0; |  56   virtual void AddTransientChild(WmWindow* parent, WmWindow* window) = 0; | 
|  57 }; |  57 }; | 
|  58  |  58  | 
|  59 }  // namespace ash |  59 }  // namespace ash | 
|  60  |  60  | 
|  61 #endif  // ASH_COMMON_TEST_ASH_TEST_IMPL_H_ |  61 #endif  // ASH_COMMON_TEST_ASH_TEST_IMPL_H_ | 
| OLD | NEW |