| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/frame/header_painter.h" | 10 #include "ash/common/frame/header_painter.h" |
| 11 #include "base/compiler_specific.h" // override | 11 #include "base/compiler_specific.h" // override |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "third_party/skia/include/core/SkColor.h" | 13 #include "third_party/skia/include/core/SkColor.h" |
| 14 #include "ui/gfx/animation/animation_delegate.h" | 14 #include "ui/gfx/animation/animation_delegate.h" |
| 15 | 15 |
| 16 class BrowserNonClientFrameViewAsh; | 16 class BrowserNonClientFrameViewAsh; |
| 17 class BrowserView; | 17 class BrowserView; |
| 18 | 18 |
| 19 namespace ash { | 19 namespace ash { |
| 20 class FrameCaptionButtonContainerView; | 20 class FrameCaptionButtonContainerView; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 // Whether the header should be painted as active. | 100 // Whether the header should be painted as active. |
| 101 Mode mode_; | 101 Mode mode_; |
| 102 | 102 |
| 103 std::unique_ptr<gfx::SlideAnimation> activation_animation_; | 103 std::unique_ptr<gfx::SlideAnimation> activation_animation_; |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(BrowserHeaderPainterAsh); | 105 DISALLOW_COPY_AND_ASSIGN(BrowserHeaderPainterAsh); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ | 108 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_HEADER_PAINTER_ASH_H_ |
| OLD | NEW |