| Index: chrome/browser/ui/views/frame/glass_browser_frame_view.h
|
| diff --git a/chrome/browser/ui/views/frame/glass_browser_frame_view.h b/chrome/browser/ui/views/frame/glass_browser_frame_view.h
|
| index 21871be62ccd0e3aeabbb97369ce771e28f536ee..aa960a7dc3a5199a28659f27a035cec7ca087313 100644
|
| --- a/chrome/browser/ui/views/frame/glass_browser_frame_view.h
|
| +++ b/chrome/browser/ui/views/frame/glass_browser_frame_view.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_UI_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/win/scoped_gdi_object.h"
|
| #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
|
| #include "ui/views/controls/button/button.h"
|
| #include "ui/views/window/non_client_view.h"
|
| @@ -96,6 +97,12 @@ class GlassBrowserFrameView : public BrowserNonClientFrameView,
|
| // The bounds of the ClientView.
|
| gfx::Rect client_view_bounds_;
|
|
|
| + // The small icon created from the bitmap image of the window icon.
|
| + base::win::ScopedHICON small_window_icon_;
|
| +
|
| + // The big icon created from the bitmap image of the window icon.
|
| + base::win::ScopedHICON big_window_icon_;
|
| +
|
| // Whether or not the window throbber is currently animating.
|
| bool throbber_running_;
|
|
|
|
|