This source file includes following definitions.
- WindowManagerProvidesTitleBar
#include "ui/views/views_delegate.h"
#include "ui/views/touchui/touch_selection_controller_impl.h"
namespace views {
ViewsDelegate::ViewsDelegate()
: views_tsc_factory_(new views::ViewsTouchSelectionControllerFactory) {
ui::TouchSelectionControllerFactory::SetInstance(views_tsc_factory_.get());
}
ViewsDelegate::~ViewsDelegate() {
ui::TouchSelectionControllerFactory::SetInstance(NULL);
}
bool ViewsDelegate::WindowManagerProvidesTitleBar(bool maximized) {
return false;
}
}