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_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "base/timer.h" | 10 #include "base/timer.h" |
11 #include "chrome/browser/tab_contents/tab_contents_view.h" | 11 #include "chrome/browser/tab_contents/tab_contents_view.h" |
12 #include "gfx/size.h" | 12 #include "ui/gfx/size.h" |
13 #include "views/widget/widget_win.h" | 13 #include "views/widget/widget_win.h" |
14 | 14 |
15 class RenderViewContextMenuViews; | 15 class RenderViewContextMenuViews; |
16 class SadTabView; | 16 class SadTabView; |
17 class SkBitmap; | 17 class SkBitmap; |
18 class TabContentsDragWin; | 18 class TabContentsDragWin; |
19 struct WebDropData; | 19 struct WebDropData; |
20 class WebDragSource; | 20 class WebDragSource; |
21 class WebDropTarget; | 21 class WebDropTarget; |
22 namespace gfx { | 22 namespace gfx { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 // Used to close the tab after the stack has unwound. | 145 // Used to close the tab after the stack has unwound. |
146 base::OneShotTimer<TabContentsViewWin> close_tab_timer_; | 146 base::OneShotTimer<TabContentsViewWin> close_tab_timer_; |
147 | 147 |
148 // Used to handle the drag-and-drop. | 148 // Used to handle the drag-and-drop. |
149 scoped_refptr<TabContentsDragWin> drag_handler_; | 149 scoped_refptr<TabContentsDragWin> drag_handler_; |
150 | 150 |
151 DISALLOW_COPY_AND_ASSIGN(TabContentsViewWin); | 151 DISALLOW_COPY_AND_ASSIGN(TabContentsViewWin); |
152 }; | 152 }; |
153 | 153 |
154 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ | 154 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_WIN_H_ |
OLD | NEW |