Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5635)

Unified Diff: chrome/browser/ui/views/wrench_toolbar_button.h

Issue 71743002: [Toolbar Views] Move toolbar files to a new subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/wrench_toolbar_button.h
diff --git a/chrome/browser/ui/views/wrench_toolbar_button.h b/chrome/browser/ui/views/wrench_toolbar_button.h
deleted file mode 100644
index e7855942136f9729f057548d7f2bf89d9987bef9..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/wrench_toolbar_button.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 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.
-
-#ifndef CHROME_BROWSER_UI_VIEWS_WRENCH_TOOLBAR_BUTTON_H_
-#define CHROME_BROWSER_UI_VIEWS_WRENCH_TOOLBAR_BUTTON_H_
-
-#include "chrome/browser/ui/toolbar/wrench_icon_painter.h"
-#include "ui/views/controls/button/menu_button.h"
-
-class WrenchToolbarButton : public views::MenuButton,
- public WrenchIconPainter::Delegate {
- public:
- explicit WrenchToolbarButton(views::MenuButtonListener* menu_button_listener);
- virtual ~WrenchToolbarButton();
-
- void SetSeverity(WrenchIconPainter::Severity severity, bool animate);
-
- private:
- // views::MenuButton:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
-
- // WrenchIconPainter::Delegate:
- virtual void ScheduleWrenchIconPaint() OVERRIDE;
-
- WrenchIconPainter::BezelType GetCurrentBezelType() const;
-
- scoped_ptr<WrenchIconPainter> wrench_icon_painter_;
-
- DISALLOW_COPY_AND_ASSIGN(WrenchToolbarButton);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_WRENCH_TOOLBAR_BUTTON_H_

Powered by Google App Engine
This is Rietveld 408576698