| Index: ash/display/shared_display_edge_indicator.cc
|
| diff --git a/ash/display/shared_display_edge_indicator.cc b/ash/display/shared_display_edge_indicator.cc
|
| index 30d1ae8f5b500ef1e0b7ca443e1ce1e0cf6fe800..ed00701060f3755aaa135d6eb2a62f154318b554 100644
|
| --- a/ash/display/shared_display_edge_indicator.cc
|
| +++ b/ash/display/shared_display_edge_indicator.cc
|
| @@ -23,8 +23,7 @@ const int kIndicatorAnimationDurationMs = 1000;
|
|
|
| class IndicatorView : public views::View {
|
| public:
|
| - IndicatorView() {
|
| - }
|
| + IndicatorView() {}
|
| ~IndicatorView() override {}
|
|
|
| void SetColor(SkColor color) {
|
| @@ -69,9 +68,7 @@ views::Widget* CreateWidget(const gfx::Rect& bounds,
|
| } // namespace
|
|
|
| SharedDisplayEdgeIndicator::SharedDisplayEdgeIndicator()
|
| - : src_indicator_(NULL),
|
| - dst_indicator_(NULL) {
|
| -}
|
| + : src_indicator_(NULL), dst_indicator_(NULL) {}
|
|
|
| SharedDisplayEdgeIndicator::~SharedDisplayEdgeIndicator() {
|
| Hide();
|
| @@ -107,7 +104,6 @@ void SharedDisplayEdgeIndicator::AnimationProgressed(
|
| static_cast<IndicatorView*>(src_indicator_)->SetColor(color);
|
| if (dst_indicator_)
|
| static_cast<IndicatorView*>(dst_indicator_)->SetColor(color);
|
| -
|
| }
|
|
|
| } // namespace ash
|
|
|