| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PANELS_PANEL_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "build/build_config.h" |
| 9 #include "chrome/browser/ui/panels/native_panel.h" | 11 #include "chrome/browser/ui/panels/native_panel.h" |
| 10 #include "ui/gfx/animation/animation_delegate.h" | 12 #include "ui/gfx/animation/animation_delegate.h" |
| 11 #include "ui/views/widget/widget_delegate.h" | 13 #include "ui/views/widget/widget_delegate.h" |
| 12 #include "ui/views/widget/widget_observer.h" | 14 #include "ui/views/widget/widget_observer.h" |
| 13 | 15 |
| 14 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
| 15 #include "ui/base/win/hwnd_subclass.h" | 17 #include "ui/base/win/hwnd_subclass.h" |
| 16 #endif | 18 #endif |
| 17 | 19 |
| 18 class AutoKeepAlive; | 20 class AutoKeepAlive; |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 244 |
| 243 #if defined(OS_WIN) | 245 #if defined(OS_WIN) |
| 244 // Used to provide custom taskbar thumbnail for Windows 7 and later. | 246 // Used to provide custom taskbar thumbnail for Windows 7 and later. |
| 245 scoped_ptr<TaskbarWindowThumbnailerWin> thumbnailer_; | 247 scoped_ptr<TaskbarWindowThumbnailerWin> thumbnailer_; |
| 246 #endif | 248 #endif |
| 247 | 249 |
| 248 DISALLOW_COPY_AND_ASSIGN(PanelView); | 250 DISALLOW_COPY_AND_ASSIGN(PanelView); |
| 249 }; | 251 }; |
| 250 | 252 |
| 251 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_VIEW_H_ | 253 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_VIEW_H_ |
| OLD | NEW |