| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ |
| 6 #define CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "app/gfx/native_widget_types.h" |
| 12 #include "app/slide_animation.h" | 13 #include "app/slide_animation.h" |
| 13 #include "base/gfx/native_widget_types.h" | |
| 14 #include "base/gfx/rect.h" | 14 #include "base/gfx/rect.h" |
| 15 #include "chrome/browser/blocked_popup_container.h" | 15 #include "chrome/browser/blocked_popup_container.h" |
| 16 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 16 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
| 17 #include "views/controls/button/button.h" | 17 #include "views/controls/button/button.h" |
| 18 #include "views/controls/button/menu_button.h" | 18 #include "views/controls/button/menu_button.h" |
| 19 #include "views/controls/menu/menu.h" | 19 #include "views/controls/menu/menu.h" |
| 20 #include "views/view.h" | 20 #include "views/view.h" |
| 21 #include "views/widget/widget_win.h" | 21 #include "views/widget/widget_win.h" |
| 22 | 22 |
| 23 class BlockedPopupContainerInternalView; | 23 class BlockedPopupContainerInternalView; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 // Our associated view object. | 78 // Our associated view object. |
| 79 BlockedPopupContainerInternalView* container_view_; | 79 BlockedPopupContainerInternalView* container_view_; |
| 80 | 80 |
| 81 // The animation that slides us up and down. | 81 // The animation that slides us up and down. |
| 82 scoped_ptr<SlideAnimation> slide_animation_; | 82 scoped_ptr<SlideAnimation> slide_animation_; |
| 83 | 83 |
| 84 DISALLOW_COPY_AND_ASSIGN(BlockedPopupContainerViewWin); | 84 DISALLOW_COPY_AND_ASSIGN(BlockedPopupContainerViewWin); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 #endif // CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ | 87 #endif // CHROME_BROWSER_VIEWS_BLOCKED_POPUP_CONTAINER_VIEW_WIN_H_ |
| OLD | NEW |