OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 VIEWS_WINDOW_WINDOW_WIN_H_ | 5 #ifndef VIEWS_WINDOW_WINDOW_WIN_H_ |
6 #define VIEWS_WINDOW_WINDOW_WIN_H_ | 6 #define VIEWS_WINDOW_WINDOW_WIN_H_ |
7 | 7 |
8 #include "views/widget/widget_win.h" | 8 #include "views/widget/widget_win.h" |
9 #include "views/window/client_view.h" | |
10 #include "views/window/non_client_view.h" | |
11 #include "views/window/window.h" | 9 #include "views/window/window.h" |
12 | 10 |
13 namespace gfx { | 11 namespace gfx { |
14 class Point; | 12 class Point; |
15 class Size; | 13 class Size; |
16 }; | 14 }; |
17 | 15 |
18 namespace views { | 16 namespace views { |
19 | 17 |
20 class Client; | 18 class Client; |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 // used to catch updates to the rect and work area and react accordingly. | 296 // used to catch updates to the rect and work area and react accordingly. |
299 HMONITOR last_monitor_; | 297 HMONITOR last_monitor_; |
300 gfx::Rect last_monitor_rect_, last_work_area_; | 298 gfx::Rect last_monitor_rect_, last_work_area_; |
301 | 299 |
302 DISALLOW_COPY_AND_ASSIGN(WindowWin); | 300 DISALLOW_COPY_AND_ASSIGN(WindowWin); |
303 }; | 301 }; |
304 | 302 |
305 } // namespace views | 303 } // namespace views |
306 | 304 |
307 #endif // VIEWS_WINDOW_WINDOW_WIN_H_ | 305 #endif // VIEWS_WINDOW_WINDOW_WIN_H_ |
OLD | NEW |