Updates the layout text when multiline property has been changed.
[chromium-blink-merge.git] / ash / test / test_shelf_item_delegate.cc
blobe8f4780025355bdf879763962708d7bb9d6b4553
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/test/test_shelf_item_delegate.h"
7 #include "ash/wm/window_util.h"
8 #include "ui/aura/window.h"
10 namespace ash {
11 namespace test {
13 TestShelfItemDelegate::TestShelfItemDelegate(aura::Window* window)
14 : window_(window) {
17 TestShelfItemDelegate::~TestShelfItemDelegate() {
20 bool TestShelfItemDelegate::ItemSelected(const ui::Event& event) {
21 if (window_) {
22 if (window_->type() == ui::wm::WINDOW_TYPE_PANEL)
23 wm::MoveWindowToEventRoot(window_, event);
24 window_->Show();
25 wm::ActivateWindow(window_);
27 return false;
30 base::string16 TestShelfItemDelegate::GetTitle() {
31 return window_ ? window_->title() : base::string16();
34 ui::MenuModel* TestShelfItemDelegate::CreateContextMenu(
35 aura::Window* root_window) {
36 return NULL;
39 ShelfMenuModel* TestShelfItemDelegate::CreateApplicationMenu(int event_flags) {
40 return NULL;
43 bool TestShelfItemDelegate::IsDraggable() {
44 return true;
47 bool TestShelfItemDelegate::ShouldShowTooltip() {
48 return true;
51 void TestShelfItemDelegate::Close() {
54 } // namespace test
55 } // namespace ash