blob: c276eb142e9c85fd4af61a21a616d0b0b172f4ce [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// 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