Index: ui/views/test/widget_test_mac.mm |
diff --git a/ui/views/test/widget_test_mac.mm b/ui/views/test/widget_test_mac.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..186ca131cff38d4c549918043436c6846bf62962 |
--- /dev/null |
+++ b/ui/views/test/widget_test_mac.mm |
@@ -0,0 +1,30 @@ |
+// 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/views/test/widget_test.h" |
+ |
+#include <Cocoa/Cocoa.h> |
+ |
+#include "ui/views/widget/root_view.h" |
+ |
+namespace views { |
+namespace test { |
+ |
+// static |
+void WidgetTest::SimulateNativeDestroy(Widget* widget) { |
+ [widget->GetNativeWindow() release]; |
Robert Sesek
2014/06/18 15:20:46
Close the window before destroying it?
tapted
2014/06/19 02:00:13
Done. yep - the test will need to see the notifica
|
+} |
+ |
+// static |
+bool WidgetTest::IsNativeWindowVisible(gfx::NativeWindow window) { |
+ return [window isVisible]; |
+} |
+ |
+// static |
+ui::EventProcessor* WidgetTest::GetEventProcessor(Widget* widget) { |
+ return static_cast<internal::RootView*>(widget->GetRootView()); |
+} |
+ |
+} // namespace test |
+} // namespace views |