OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/views/infobars/infobar_container_view.h" | 5 #include "chrome/browser/ui/views/infobars/infobar_container_view.h" |
6 | 6 |
| 7 #include "cc/paint/paint_flags.h" |
| 8 #include "cc/paint/paint_shader.h" |
7 #include "chrome/browser/ui/infobar_container_delegate.h" | 9 #include "chrome/browser/ui/infobar_container_delegate.h" |
8 #include "chrome/browser/ui/view_ids.h" | 10 #include "chrome/browser/ui/view_ids.h" |
9 #include "chrome/browser/ui/views/infobars/infobar_view.h" | 11 #include "chrome/browser/ui/views/infobars/infobar_view.h" |
10 #include "chrome/grit/generated_resources.h" | 12 #include "chrome/grit/generated_resources.h" |
11 #include "ui/accessibility/ax_node_data.h" | 13 #include "ui/accessibility/ax_node_data.h" |
12 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
13 #include "ui/gfx/canvas.h" | 15 #include "ui/gfx/canvas.h" |
14 #include "ui/gfx/skia_paint_util.h" | 16 #include "ui/gfx/skia_paint_util.h" |
15 #include "ui/views/view_targeter.h" | 17 #include "ui/views/view_targeter.h" |
16 | 18 |
(...skipping 11 matching lines...) Expand all Loading... |
28 ContentShadow() { | 30 ContentShadow() { |
29 SetPaintToLayer(); | 31 SetPaintToLayer(); |
30 layer()->SetFillsBoundsOpaquely(false); | 32 layer()->SetFillsBoundsOpaquely(false); |
31 } | 33 } |
32 ~ContentShadow() override {} | 34 ~ContentShadow() override {} |
33 | 35 |
34 protected: | 36 protected: |
35 // views::View: | 37 // views::View: |
36 void OnPaint(gfx::Canvas* canvas) override { | 38 void OnPaint(gfx::Canvas* canvas) override { |
37 // The first shader (small shadow) blurs from 0 to kSmallShadowHeight. | 39 // The first shader (small shadow) blurs from 0 to kSmallShadowHeight. |
38 SkPaint paint; | 40 cc::PaintFlags paint; |
39 paint.setShader(gfx::CreateGradientShader( | 41 paint.setShader(gfx::CreateGradientShader( |
40 0, kSmallShadowHeight, SkColorSetA(SK_ColorBLACK, kSmallShadowAlpha), | 42 0, kSmallShadowHeight, SkColorSetA(SK_ColorBLACK, kSmallShadowAlpha), |
41 SkColorSetA(SK_ColorBLACK, SK_AlphaTRANSPARENT))); | 43 SkColorSetA(SK_ColorBLACK, SK_AlphaTRANSPARENT))); |
42 gfx::Rect small_shadow_bounds = GetLocalBounds(); | 44 gfx::Rect small_shadow_bounds = GetLocalBounds(); |
43 small_shadow_bounds.set_height(kSmallShadowHeight); | 45 small_shadow_bounds.set_height(kSmallShadowHeight); |
44 canvas->DrawRect(small_shadow_bounds, paint); | 46 canvas->DrawRect(small_shadow_bounds, paint); |
45 | 47 |
46 // The second shader (large shadow) is solid from 0 to kSmallShadowHeight | 48 // The second shader (large shadow) is solid from 0 to kSmallShadowHeight |
47 // (blending with the first shader) and then blurs from kSmallShadowHeight | 49 // (blending with the first shader) and then blurs from kSmallShadowHeight |
48 // to kLargeShadowHeight. | 50 // to kLargeShadowHeight. |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 infobars::InfoBar* infobar, | 126 infobars::InfoBar* infobar, |
125 size_t position) { | 127 size_t position) { |
126 AddChildViewAt(static_cast<InfoBarView*>(infobar), | 128 AddChildViewAt(static_cast<InfoBarView*>(infobar), |
127 static_cast<int>(position)); | 129 static_cast<int>(position)); |
128 } | 130 } |
129 | 131 |
130 void InfoBarContainerView::PlatformSpecificRemoveInfoBar( | 132 void InfoBarContainerView::PlatformSpecificRemoveInfoBar( |
131 infobars::InfoBar* infobar) { | 133 infobars::InfoBar* infobar) { |
132 RemoveChildView(static_cast<InfoBarView*>(infobar)); | 134 RemoveChildView(static_cast<InfoBarView*>(infobar)); |
133 } | 135 } |
OLD | NEW |