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

Unified Diff: ash/launcher/overflow_button.h

Issue 23534023: ash: Minor cleanup, move more files from launcher to shelf. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months 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
« no previous file with comments | « ash/launcher/overflow_bubble.cc ('k') | ash/launcher/overflow_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/launcher/overflow_button.h
diff --git a/ash/launcher/overflow_button.h b/ash/launcher/overflow_button.h
deleted file mode 100644
index 0b225aaa29ef499051248743a73ed5e6e22447ab..0000000000000000000000000000000000000000
--- a/ash/launcher/overflow_button.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2012 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 ASH_LAUNCHER_OVERFLOW_BUTTON_H_
-#define ASH_LAUNCHER_OVERFLOW_BUTTON_H_
-
-#include "ash/shelf/shelf_types.h"
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "ui/gfx/image/image_skia.h"
-#include "ui/views/controls/button/custom_button.h"
-
-namespace ash {
-namespace internal {
-
-// Launcher overflow chevron button.
-class OverflowButton : public views::CustomButton {
- public:
- explicit OverflowButton(views::ButtonListener* listener);
- virtual ~OverflowButton();
-
- void OnShelfAlignmentChanged();
-
- private:
- void PaintBackground(gfx::Canvas* canvas, int alpha);
-
- // views::View overrides:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
-
- // Left and right images are rotations of bottom_image and are
- // owned by the overflow button.
- gfx::ImageSkia left_image_;
- gfx::ImageSkia right_image_;
- // Bottom image is owned by the resource bundle.
- const gfx::ImageSkia* bottom_image_;
-
- DISALLOW_COPY_AND_ASSIGN(OverflowButton);
-};
-
-} // namespace internal
-} // namespace ash
-
-#endif // ASH_LAUNCHER_OVERFLOW_BUTTON_H_
« no previous file with comments | « ash/launcher/overflow_bubble.cc ('k') | ash/launcher/overflow_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698