summaryrefslogtreecommitdiffstats
path: root/ash/launcher/launcher_button_host.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 18:22:51 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 18:22:51 +0000
commit194ad1dd149ad2a577cd1a41ccfdd4a1fb7cd656 (patch)
tree8b71cea824e13b6fca3734642fdf83e56c7d47f7 /ash/launcher/launcher_button_host.h
parent783eb300ba843d498bfb55076d81d45e77bb6fff (diff)
downloadchromium_src-194ad1dd149ad2a577cd1a41ccfdd4a1fb7cd656.zip
chromium_src-194ad1dd149ad2a577cd1a41ccfdd4a1fb7cd656.tar.gz
chromium_src-194ad1dd149ad2a577cd1a41ccfdd4a1fb7cd656.tar.bz2
Tweaks for the launcher:
. App list and browser shortcut buttons can be moved around. . Clicking the tabbed button cycles windows (creating a new one if there isn't one). BUG=110094 TEST=see bug R=ben@chromium.org,jamescook@chromium.org Review URL: http://codereview.chromium.org/9231030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118112 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/launcher/launcher_button_host.h')
-rw-r--r--ash/launcher/launcher_button_host.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ash/launcher/launcher_button_host.h b/ash/launcher/launcher_button_host.h
index b89c4be..1cc9461 100644
--- a/ash/launcher/launcher_button_host.h
+++ b/ash/launcher/launcher_button_host.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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.
@@ -30,6 +30,9 @@ class LauncherButtonHost {
virtual void MouseReleasedOnButton(views::View* view,
bool canceled) = 0;
+ // Invoked when the mouse exits the item.
+ virtual void MouseExitedButton(views::View* view) = 0;
+
protected:
virtual ~LauncherButtonHost() {}
};