OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_TABS_DRAGGED_TAB_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "gfx/point.h" | 10 #include "ui/gfx/point.h" |
11 #include "gfx/size.h" | 11 #include "ui/gfx/size.h" |
12 #include "views/view.h" | 12 #include "views/view.h" |
13 | 13 |
14 namespace views { | 14 namespace views { |
15 #if defined(OS_WIN) | 15 #if defined(OS_WIN) |
16 class WidgetWin; | 16 class WidgetWin; |
17 #elif defined(OS_LINUX) | 17 #elif defined(OS_LINUX) |
18 class WidgetGtk; | 18 class WidgetGtk; |
19 #endif | 19 #endif |
20 } | 20 } |
21 namespace gfx { | 21 namespace gfx { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 // we are dragging. | 94 // we are dragging. |
95 NativeViewPhotobooth* photobooth_; | 95 NativeViewPhotobooth* photobooth_; |
96 | 96 |
97 // Size of the TabContents being dragged. | 97 // Size of the TabContents being dragged. |
98 gfx::Size contents_size_; | 98 gfx::Size contents_size_; |
99 | 99 |
100 DISALLOW_COPY_AND_ASSIGN(DraggedTabView); | 100 DISALLOW_COPY_AND_ASSIGN(DraggedTabView); |
101 }; | 101 }; |
102 | 102 |
103 #endif // CHROME_BROWSER_UI_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ | 103 #endif // CHROME_BROWSER_UI_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
OLD | NEW |