| Index: ash/aura/wm_window_aura.cc
|
| diff --git a/ash/aura/wm_window_aura.cc b/ash/aura/wm_window_aura.cc
|
| index 0c7184d4a459d01a7d8bb45e455d516d7ff4c6cd..097733f1e1a7cf595aed0621604e54eefd359d09 100644
|
| --- a/ash/aura/wm_window_aura.cc
|
| +++ b/ash/aura/wm_window_aura.cc
|
| @@ -188,6 +188,14 @@ ui::wm::WindowType WmWindowAura::GetType() const {
|
| return window_->type();
|
| }
|
|
|
| +int WmWindowAura::GetAppType() const {
|
| + return window_->GetProperty(aura::client::kAppType);
|
| +}
|
| +
|
| +void WmWindowAura::SetAppType(int app_type) const {
|
| + window_->SetProperty(aura::client::kAppType, app_type);
|
| +}
|
| +
|
| bool WmWindowAura::IsBubble() {
|
| views::Widget* widget = views::Widget::GetWidgetForNativeView(window_);
|
| return widget->widget_delegate()->AsBubbleDialogDelegate() != nullptr;
|
|
|