OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ |
7 | 7 |
8 #include "ash/frame/header_painter.h" | 8 #include "ash/frame/header_painter.h" |
9 #include "base/basictypes.h" | |
10 #include "base/compiler_specific.h" // override | 9 #include "base/compiler_specific.h" // override |
| 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "ui/gfx/animation/animation_delegate.h" | 12 #include "ui/gfx/animation/animation_delegate.h" |
13 | 13 |
14 class BrowserView; | 14 class BrowserView; |
15 | 15 |
16 namespace ash { | 16 namespace ash { |
17 class FrameCaptionButtonContainerView; | 17 class FrameCaptionButtonContainerView; |
18 } | 18 } |
19 | 19 |
20 namespace gfx { | 20 namespace gfx { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 // Whether the header should be painted as active. | 114 // Whether the header should be painted as active. |
115 Mode mode_; | 115 Mode mode_; |
116 | 116 |
117 scoped_ptr<gfx::SlideAnimation> activation_animation_; | 117 scoped_ptr<gfx::SlideAnimation> activation_animation_; |
118 | 118 |
119 DISALLOW_COPY_AND_ASSIGN(BrowserHeaderPainterAsh); | 119 DISALLOW_COPY_AND_ASSIGN(BrowserHeaderPainterAsh); |
120 }; | 120 }; |
121 | 121 |
122 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ | 122 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ |
OLD | NEW |