| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ | 5 #ifndef UI_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ |
| 6 #define UI_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ | 6 #define UI_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "ui/gfx/win/window_impl.h" | 9 #include "ui/gfx/win/window_impl.h" |
| 10 #include "ui/platform_window/platform_window.h" | 10 #include "ui/platform_window/platform_window.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 LRESULT OnCreate(CREATESTRUCT* create_struct); | 65 LRESULT OnCreate(CREATESTRUCT* create_struct); |
| 66 void OnDestroy(); | 66 void OnDestroy(); |
| 67 void OnPaint(HDC); | 67 void OnPaint(HDC); |
| 68 void OnWindowPosChanged(WINDOWPOS* window_pos); | 68 void OnWindowPosChanged(WINDOWPOS* window_pos); |
| 69 | 69 |
| 70 PlatformWindowDelegate* delegate_; | 70 PlatformWindowDelegate* delegate_; |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(WinWindow); | 72 DISALLOW_COPY_AND_ASSIGN(WinWindow); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 namespace test { | |
| 76 | |
| 77 // Set true to let WindowTreeHostWin use a popup window | |
| 78 // with no frame/title so that the window size and test's | |
| 79 // expectations matches. | |
| 80 WIN_WINDOW_EXPORT void SetUsePopupAsRootWindowForTest(bool use); | |
| 81 | |
| 82 } // namespace test | |
| 83 | |
| 84 } // namespace ui | 75 } // namespace ui |
| 85 | 76 |
| 86 #endif // UI_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ | 77 #endif // UI_PLATFORM_WINDOW_WIN_WIN_WINDOW_H_ |
| OLD | NEW |