// Copyright 2016 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/views/test/scoped_views_test_helper.h"
#include <Cocoa/Cocoa.h>
#include "ui/views/widget/widget.h"
namespace views {
void ScopedViewsTestHelper::SimulateNativeDestroy(Widget* widget) {
// Retain the window while closing it, otherwise the window may lose its
// last owner before -[NSWindow close] completes (this offends AppKit).
// Usually this reference will exist on an event delivered to the runloop.
NSWindow* window = widget->GetNativeWindow().GetNativeNSWindow();
[window close];
}
} // namespace views