| Index: ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| index 18bc4d0d8a0981cf41d4a8de4cdd2b862773411e..f6301474a4738d96023d4ffdc32a6838f51445e1 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| +++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| @@ -393,12 +393,6 @@ gfx::NativeWindow DesktopNativeWidgetAura::GetNativeWindow() const {
|
| return content_window_;
|
| }
|
|
|
| -void DesktopNativeWidgetAura::SetNativeWindowProperty(const char* name,
|
| - void* value) {
|
| - if (content_window_)
|
| - content_window_->SetNativeWindowProperty(name, value);
|
| -}
|
| -
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // DesktopNativeWidgetAura, internal::NativeWidgetPrivate implementation:
|
|
|
| @@ -604,6 +598,12 @@ void DesktopNativeWidgetAura::ViewRemoved(View* view) {
|
| drop_helper_->ResetTargetViewIfEquals(view);
|
| }
|
|
|
| +void DesktopNativeWidgetAura::SetNativeWindowProperty(const char* name,
|
| + void* value) {
|
| + if (content_window_)
|
| + content_window_->SetNativeWindowProperty(name, value);
|
| +}
|
| +
|
| void* DesktopNativeWidgetAura::GetNativeWindowProperty(const char* name) const {
|
| return content_window_ ?
|
| content_window_->GetNativeWindowProperty(name) : NULL;
|
|
|