Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Unified Diff: ui/views/test/platform_test_helper.mm

Issue 2488393003: Changes views_aura_mus_unittests to create DesktopNativeWidgetAura (Closed)
Patch Set: fix mac Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/test/platform_test_helper.cc ('k') | ui/views/test/scoped_views_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/test/platform_test_helper.mm
diff --git a/ui/views/test/platform_test_helper.mm b/ui/views/test/platform_test_helper.mm
new file mode 100644
index 0000000000000000000000000000000000000000..f90472ade6e14560feb97ad043e04daa59e6a3ad
--- /dev/null
+++ b/ui/views/test/platform_test_helper.mm
@@ -0,0 +1,46 @@
+// Copyright 2016 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/views/test/platform_test_helper.h"
+
+#include <Cocoa/Cocoa.h>
+
+#import "base/mac/scoped_nsobject.h"
+#import "base/mac/scoped_objc_class_swizzler.h"
+#include "base/macros.h"
+#include "base/memory/ptr_util.h"
+#import "ui/views/cocoa/bridged_native_widget.h"
+#include "ui/views/widget/native_widget_mac.h"
+#include "ui/views/widget/widget.h"
+
+namespace views {
+namespace {
+
+class DefaultPlatformTestHelper : public PlatformTestHelper {
+ public:
+ DefaultPlatformTestHelper() {}
+ ~DefaultPlatformTestHelper() override {}
+
+ // PlatformTestHelper:
+ void SimulateNativeDestroy(Widget* widget) override {
+ // Retain the window while closing it, otherwise the window may lose its
+ // last
msw 2016/11/11 00:29:25 nit: wrapping
sky 2016/11/11 01:09:14 Done.
+ // owner before -[NSWindow close] completes (this offends AppKit). Usually
+ // this reference will exist on an event delivered to the runloop.
+ base::scoped_nsobject<NSWindow> window([widget->GetNativeWindow() retain]);
+ [window close];
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(DefaultPlatformTestHelper);
+};
+
+} // namespace
+
+// static
+std::unique_ptr<PlatformTestHelper> PlatformTestHelper::Create() {
+ return base::WrapUnique(new DefaultPlatformTestHelper);
+}
+
+} // namespace views
« no previous file with comments | « ui/views/test/platform_test_helper.cc ('k') | ui/views/test/scoped_views_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698