| Index: ash/system/tray/tray_popup_label_button.cc
|
| diff --git a/ash/system/tray/tray_popup_label_button.cc b/ash/system/tray/tray_popup_label_button.cc
|
| deleted file mode 100644
|
| index c6e98cfe96f3ea69a1753a96fae147e3d6cb922d..0000000000000000000000000000000000000000
|
| --- a/ash/system/tray/tray_popup_label_button.cc
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -// Copyright 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "ash/system/tray/tray_popup_label_button.h"
|
| -
|
| -#include "ash/common/ash_constants.h"
|
| -#include "ash/system/tray/tray_popup_label_button_border.h"
|
| -#include "ui/gfx/canvas.h"
|
| -#include "ui/gfx/geometry/rect.h"
|
| -#include "ui/views/painter.h"
|
| -
|
| -namespace ash {
|
| -
|
| -TrayPopupLabelButton::TrayPopupLabelButton(views::ButtonListener* listener,
|
| - const base::string16& text)
|
| - : views::LabelButton(listener, text) {
|
| - SetBorder(std::unique_ptr<views::Border>(new TrayPopupLabelButtonBorder));
|
| - SetFocusForPlatform();
|
| - set_animate_on_state_change(false);
|
| - SetHorizontalAlignment(gfx::ALIGN_CENTER);
|
| - SetFocusPainter(views::Painter::CreateSolidFocusPainter(
|
| - kFocusBorderColor,
|
| - gfx::Insets(1, 1, 2, 2)));
|
| -}
|
| -
|
| -TrayPopupLabelButton::~TrayPopupLabelButton() {}
|
| -
|
| -} // namespace ash
|
|
|