From ab0a50979b9eb4dfa3320eff7e187e41efedf7a9 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Fri, 8 Aug 2014 14:30:41 +0200 Subject: Update Chromium to beta version 37.0.2062.68 Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi --- chromium/ui/wm/core/wm_state.cc | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 chromium/ui/wm/core/wm_state.cc (limited to 'chromium/ui/wm/core/wm_state.cc') diff --git a/chromium/ui/wm/core/wm_state.cc b/chromium/ui/wm/core/wm_state.cc new file mode 100644 index 00000000000..6d580863394 --- /dev/null +++ b/chromium/ui/wm/core/wm_state.cc @@ -0,0 +1,30 @@ +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "ui/wm/core/wm_state.h" + +#include "ui/events/platform/platform_event_source.h" +#include "ui/wm/core/transient_window_controller.h" +#include "ui/wm/core/transient_window_stacking_client.h" + +namespace wm { + +WMState::WMState() + : window_stacking_client_(new TransientWindowStackingClient), + transient_window_client_(new TransientWindowController) { + aura::client::SetWindowStackingClient(window_stacking_client_.get()); + aura::client::SetTransientWindowClient(transient_window_client_.get()); +} + +WMState::~WMState() { + if (aura::client::GetWindowStackingClient() == window_stacking_client_.get()) + aura::client::SetWindowStackingClient(NULL); + + if (aura::client::GetTransientWindowClient() == + transient_window_client_.get()) { + aura::client::SetTransientWindowClient(NULL); + } +} + +} // namespace wm -- cgit v1.2.3