summaryrefslogtreecommitdiffstats
path: root/ash/shelf/shelf_widget_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* ash: Rename LauncherButton to ShelfButton.tfarina@chromium.org2013-11-231-1/+1
| | | | | | | | | | | | | * Move launcher_button.* from launcher/ to shelf/ * Rename to shelf_button.* BUG=248353 TEST=None, no functional changes R=jamescook@chromium.org,harrym@chromium.org Review URL: https://codereview.chromium.org/83953003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236982 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Rename LauncherModel to ShelfModel.tfarina@chromium.org2013-11-141-2/+2
| | | | | | | | | | | | | * Move launcher_model.* from launcher/ to shelf/ * Rename to shelf_model.* BUG=248353 TEST=None, no functional changes R=jamescook@chromium.org,harrym@chromium.org Review URL: https://codereview.chromium.org/71653003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235217 0039d316-1c4b-4281-b951-d872f2087c98
* Eliminate Shell::RootWindowList in favor of aura::Window::Windows.ben@chromium.org2013-11-081-1/+1
| | | | | | | | | | | | | This is necessary as part of my plan to rework RootWindow, specifically making it not be a subclass of Window. (It will eventually be renamed WindowEventDispatcher). Code that expected to get the RootWindow interface from this type can still call GetDispatcher() on members of the returned vector of Windows. R=oshima@chromium.org http://crbug.com/308843 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=233787 Review URL: https://codereview.chromium.org/64933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233970 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 233787 "Eliminate Shell::RootWindowList in favor of aura:..."ben@chromium.org2013-11-081-1/+1
| | | | | | | | | | | | | | | | | > Eliminate Shell::RootWindowList in favor of aura::Window::Windows. > > This is necessary as part of my plan to rework RootWindow, specifically making it not be a subclass of Window. (It will eventually be renamed WindowEventDispatcher). Code that expected to get the RootWindow interface from this type can still call GetDispatcher() on members of the returned vector of Windows. > > R=oshima@chromium.org > http://crbug.com/308843 > > Review URL: https://codereview.chromium.org/64933002 TBR=ben@chromium.org Review URL: https://codereview.chromium.org/59153004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233813 0039d316-1c4b-4281-b951-d872f2087c98
* Eliminate Shell::RootWindowList in favor of aura::Window::Windows.ben@chromium.org2013-11-081-1/+1
| | | | | | | | | | | This is necessary as part of my plan to rework RootWindow, specifically making it not be a subclass of Window. (It will eventually be renamed WindowEventDispatcher). Code that expected to get the RootWindow interface from this type can still call GetDispatcher() on members of the returned vector of Windows. R=oshima@chromium.org http://crbug.com/308843 Review URL: https://codereview.chromium.org/64933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233787 0039d316-1c4b-4281-b951-d872f2087c98
* Make GetRootWindow() return a Window instead of a RootWindow.ben@chromium.org2013-10-251-1/+1
| | | | | | | | | | | | Also adds a typedef from RootWindow to WindowEventDispatcher, the eventual name of this type. Adds a GetDispatcher() method that crawls up to the root Window and returns the WindowEventDispatcher. R=sky@chromium.org http://crbug.com/308843 Review URL: https://codereview.chromium.org/37733003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231077 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Move launcher_view* to shelf/ directory.tfarina@chromium.org2013-10-181-4/+4
| | | | | | | | | | | BUG=248353 TEST=none, no functional changes. R=jamescook@chromium.org, xiyuan@chromium.org TBR=sky@chromium.org # for chrome/browser/ui Review URL: https://codereview.chromium.org/27628002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229274 0039d316-1c4b-4281-b951-d872f2087c98
* [ash] Remove Launcher::GetLauncherViewForTest()simon.hong81@gmail.com2013-09-141-2/+3
| | | | | | | | | | | | To export LauncherView, ash::test::LauncherTestAPI class is created. R=sky@chromium.org BUG=NONE TEST=ash_unittests, browser_tests, interactive_ui_tests Review URL: https://chromiumcodereview.appspot.com/23449033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223215 0039d316-1c4b-4281-b951-d872f2087c98
* Remove old activation code and disable-focus-controller flagsoshima@chromium.org2013-09-051-5/+3
| | | | | | | | BUG=285339,285364 Review URL: https://chromiumcodereview.appspot.com/23874013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221529 0039d316-1c4b-4281-b951-d872f2087c98
* ash:Shelf - Enable Alternate Shelf and Side Shelf by default.harrym@chromium.org2013-09-051-9/+9
| | | | | | | | | | | Updated and/or duplicated (updated with copy renamed *ForLegacyShelfLayout) unit tests as required. BUG=246279 TBR=jamescook@chromium.org, skuhne@chromium.org Review URL: https://codereview.chromium.org/22793011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221325 0039d316-1c4b-4281-b951-d872f2087c98
* cros: Fix launcher size not properly initialized.xiyuan@chromium.org2013-07-021-0/+38
| | | | | | | | | | | | On Chrome OS, launcher is created after user login and could be created after its container Window and status widget has finished sizing. An explicit LayoutShelf call is needed to ensure its size is properly initialized. BUG=252533 Review URL: https://chromiumcodereview.appspot.com/18416003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209576 0039d316-1c4b-4281-b951-d872f2087c98
* Skip mulitple-display tests on win8oshima@chromium.org2013-06-121-0/+3
| | | | | | | | | | Re-enable tests that should pass on win7. BUG=247427 Review URL: https://chromiumcodereview.appspot.com/16539005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205846 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ash-disable-launcher-per-display flagoshima@chromium.org2013-05-101-19/+17
| | | | | | | | | BUG=239681 TEST=none Review URL: https://chromiumcodereview.appspot.com/14584004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199368 0039d316-1c4b-4281-b951-d872f2087c98
* Changes the background color of status area.mukai@chromium.org2013-05-011-6/+6
| | | | | | | | | | | | | | | | | | | As is described in crbug.com/235992, the new status area will be: - as-is dark background, hover changes color gradually - when click, the background changes to blue color - the color and behavior should be shared among web notification and tray - the height should be same. This CL doesn't change the user icon layout. It will be done in another CL. BUG=235992 R=derat@chromium.org, stevenjb@chromium.org Review URL: https://codereview.chromium.org/14198020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197529 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor: Shelf Widgetharrym@chromium.org2013-03-091-0/+156
Refactor the classes related with displaying the shelf (background behind the launcher/status area widget) to be a separate class. Removing background delegates from the launcher and status area widget (represented on tray views). TBR=ben@chromium.org BUG=163002 Review URL: https://chromiumcodereview.appspot.com/12313118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187122 0039d316-1c4b-4281-b951-d872f2087c98