blob: d0d8a6351de16011f9cb2ef21eee70b551d0632b [file] [log] [blame]
// Copyright 2014 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/aura/client/transient_window_client.h"
namespace aura {
namespace client {
namespace {
TransientWindowClient* g_transient_window_client_instance = nullptr;
} // namespace
void SetTransientWindowClient(TransientWindowClient* client) {
g_transient_window_client_instance = client;
}
TransientWindowClient* GetTransientWindowClient() {
return g_transient_window_client_instance;
}
} // namespace client
} // namespace aura