| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "views/widget/native_widget_win.h" | 5 #include "ui/views/widget/native_widget_win.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 class NativeWidgetWinTest : public testing::Test { | 15 class NativeWidgetWinTest : public testing::Test { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 EXPECT_FALSE(window->IsZoomed()); | 77 EXPECT_FALSE(window->IsZoomed()); |
| 78 EXPECT_FALSE(window->IsActive()); | 78 EXPECT_FALSE(window->IsActive()); |
| 79 | 79 |
| 80 // Cleanup. | 80 // Cleanup. |
| 81 window->CloseNow(); | 81 window->CloseNow(); |
| 82 window2->CloseNow(); | 82 window2->CloseNow(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 } // namespace | 85 } // namespace |
| 86 } // namespace views | 86 } // namespace views |
| OLD | NEW |