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 CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/tab_contents/constrained_window.h" | 9 #include "chrome/browser/tab_contents/constrained_window.h" |
10 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 10 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
11 #include "gfx/rect.h" | 11 #include "ui/gfx/rect.h" |
12 #include "views/window/window_win.h" | 12 #include "views/window/window_win.h" |
13 | 13 |
14 class ConstrainedTabContentsWindowDelegate; | 14 class ConstrainedTabContentsWindowDelegate; |
15 class ConstrainedWindowAnimation; | 15 class ConstrainedWindowAnimation; |
16 class ConstrainedWindowFrameView; | 16 class ConstrainedWindowFrameView; |
17 namespace views { | 17 namespace views { |
18 class WindowDelegate; | 18 class WindowDelegate; |
19 } | 19 } |
20 | 20 |
21 /////////////////////////////////////////////////////////////////////////////// | 21 /////////////////////////////////////////////////////////////////////////////// |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // the constrained title bar. | 68 // the constrained title bar. |
69 gfx::Point anchor_point_; | 69 gfx::Point anchor_point_; |
70 | 70 |
71 // Current display rectangle (relative to owner_'s visible area). | 71 // Current display rectangle (relative to owner_'s visible area). |
72 gfx::Rect current_bounds_; | 72 gfx::Rect current_bounds_; |
73 | 73 |
74 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowWin); | 74 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowWin); |
75 }; | 75 }; |
76 | 76 |
77 #endif // CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ | 77 #endif // CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_WIN_H_ |
OLD | NEW |