blob: a276464399b19dae13b709e93429f8f06b051210 [file] [log] [blame]
// Copyright 2018 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 "ash/window_factory.h"
#include "ash/shell.h"
#include "ui/aura/window.h"
namespace ash {
namespace window_factory {
std::unique_ptr<aura::Window> NewWindow(aura::WindowDelegate* delegate,
aura::client::WindowType type) {
return std::make_unique<aura::Window>(delegate, type,
Shell::Get()->aura_env());
}
} // namespace window_factory
} // namespace ash