| 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_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
| 7 | 7 |
| 8 #include "app/slide_animation.h" | 8 #include "app/slide_animation.h" |
| 9 #include "base/gfx/point.h" | 9 #include "base/gfx/point.h" |
| 10 #include "base/gfx/size.h" | 10 #include "base/gfx/size.h" |
| 11 #include "base/task.h" | 11 #include "base/task.h" |
| 12 #include "skia/include/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 class WidgetWin; | 16 class WidgetWin; |
| 17 } | 17 } |
| 18 namespace gfx { | 18 namespace gfx { |
| 19 class Point; | 19 class Point; |
| 20 } | 20 } |
| 21 class HWNDPhotobooth; | 21 class HWNDPhotobooth; |
| 22 class Tab; | 22 class Tab; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 scoped_ptr<Callback0::Type> animation_callback_; | 109 scoped_ptr<Callback0::Type> animation_callback_; |
| 110 | 110 |
| 111 // The start and end bounds of the animation sequence. | 111 // The start and end bounds of the animation sequence. |
| 112 gfx::Rect animation_start_bounds_; | 112 gfx::Rect animation_start_bounds_; |
| 113 gfx::Rect animation_end_bounds_; | 113 gfx::Rect animation_end_bounds_; |
| 114 | 114 |
| 115 DISALLOW_EVIL_CONSTRUCTORS(DraggedTabView); | 115 DISALLOW_EVIL_CONSTRUCTORS(DraggedTabView); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ | 118 #endif // CHROME_BROWSER_VIEWS_TABS_DRAGGED_TAB_VIEW_H_ |
| OLD | NEW |