summaryrefslogtreecommitdiffstats
path: root/ash/wm/app_list_controller.cc
diff options
context:
space:
mode:
authorskuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-16 03:16:56 +0000
committerskuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-16 03:16:56 +0000
commitd206c6efb0a641c04650c04593974a8e6d9de721 (patch)
treeb0a60ee06d249d74a4aeb50606e8b0e818b4faee /ash/wm/app_list_controller.cc
parent415aba8c7634ecc823eefa97272c04b31a10d481 (diff)
downloadchromium_src-d206c6efb0a641c04650c04593974a8e6d9de721.zip
chromium_src-d206c6efb0a641c04650c04593974a8e6d9de721.tar.gz
chromium_src-d206c6efb0a641c04650c04593974a8e6d9de721.tar.bz2
Turn off the tip for the sytem tray menu and the app list (ChromeOS).
BUG=245016 TEST=visual Review URL: https://chromiumcodereview.appspot.com/16909006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206628 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/app_list_controller.cc')
-rw-r--r--ash/wm/app_list_controller.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/wm/app_list_controller.cc b/ash/wm/app_list_controller.cc
index d9bf234..a13ba65 100644
--- a/ash/wm/app_list_controller.cc
+++ b/ash/wm/app_list_controller.cc
@@ -4,6 +4,7 @@
#include "ash/wm/app_list_controller.h"
+#include "ash/ash_switches.h"
#include "ash/launcher/launcher.h"
#include "ash/root_window_controller.h"
#include "ash/shelf/shelf_layout_manager.h"
@@ -127,6 +128,8 @@ void AppListController::SetVisible(bool visible, aura::Window* window) {
gfx::Point(),
GetBubbleArrow(container),
true /* border_accepts_events */);
+ if (ash::switches::UseAlternateShelfLayout())
+ view->SetArrowPaintType(views::BubbleBorder::PAINT_NONE);
SetView(view);
}
}