OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
Andre
2014/06/17 21:17:56
2014
tapted
2014/06/18 08:28:06
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/views/test/widget_test.h" | |
6 | |
7 #include <Cocoa/Cocoa.h> | |
8 | |
9 namespace views { | |
10 namespace test { | |
11 | |
12 // static | |
13 bool WidgetTest::IsNativeWindowVisible(gfx::NativeWindow window) { | |
14 return [window isVisible]; | |
15 } | |
16 | |
17 // static | |
18 ui::EventProcessor* WidgetTest::GetEventProcessor(Widget* widget) { | |
19 return NULL; | |
20 } | |
21 | |
22 } // namespace test | |
23 } // namespace views | |
OLD | NEW |