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

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

Issue 334573008: MacViews: Encapsulate some Aura specifics in widget_unittest.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile Created 6 years, 6 months 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
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

Powered by Google App Engine
This is Rietveld 408576698