Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <algorithm> | 5 #include <algorithm> |
| 6 #include <memory> | 6 #include <memory> |
| 7 #include <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 #include "ui/views/test/widget_test.h" | 29 #include "ui/views/test/widget_test.h" |
| 30 #include "ui/views/widget/native_widget_delegate.h" | 30 #include "ui/views/widget/native_widget_delegate.h" |
| 31 #include "ui/views/widget/native_widget_private.h" | 31 #include "ui/views/widget/native_widget_private.h" |
| 32 #include "ui/views/widget/root_view.h" | 32 #include "ui/views/widget/root_view.h" |
| 33 #include "ui/views/widget/widget_deletion_observer.h" | 33 #include "ui/views/widget/widget_deletion_observer.h" |
| 34 #include "ui/views/widget/widget_removals_observer.h" | 34 #include "ui/views/widget/widget_removals_observer.h" |
| 35 #include "ui/views/window/dialog_delegate.h" | 35 #include "ui/views/window/dialog_delegate.h" |
| 36 #include "ui/views/window/native_frame_view.h" | 36 #include "ui/views/window/native_frame_view.h" |
| 37 | 37 |
| 38 #if defined(OS_WIN) | 38 #if defined(OS_WIN) |
| 39 #include "ui/aura/window.h" | 39 #include "ui/aura/window.h" // nogncheck |
| 40 #include "ui/aura/window_tree_host.h" | 40 #include "ui/aura/window_tree_host.h" // nogncheck |
|
tapted
2016/09/19 03:23:36
So the "alternative" to // nogncheck is to move th
| |
| 41 #include "ui/base/view_prop.h" | 41 #include "ui/base/view_prop.h" |
| 42 #include "ui/base/win/window_event_target.h" | 42 #include "ui/base/win/window_event_target.h" |
| 43 #include "ui/views/win/hwnd_util.h" | 43 #include "ui/views/win/hwnd_util.h" |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 #if defined(OS_MACOSX) | 46 #if defined(OS_MACOSX) |
| 47 #include "base/mac/mac_util.h" | 47 #include "base/mac/mac_util.h" |
| 48 #endif | 48 #endif |
| 49 | 49 |
| 50 namespace views { | 50 namespace views { |
| (...skipping 3777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3828 Transparency_DesktopWidgetTranslucent | 3828 Transparency_DesktopWidgetTranslucent |
| 3829 #endif | 3829 #endif |
| 3830 TEST_F(CompositingWidgetTest, MAYBE_Transparency_DesktopWidgetTranslucent) { | 3830 TEST_F(CompositingWidgetTest, MAYBE_Transparency_DesktopWidgetTranslucent) { |
| 3831 CheckAllWidgetsForOpacity(Widget::InitParams::TRANSLUCENT_WINDOW); | 3831 CheckAllWidgetsForOpacity(Widget::InitParams::TRANSLUCENT_WINDOW); |
| 3832 } | 3832 } |
| 3833 | 3833 |
| 3834 #endif // !defined(OS_CHROMEOS) | 3834 #endif // !defined(OS_CHROMEOS) |
| 3835 | 3835 |
| 3836 } // namespace test | 3836 } // namespace test |
| 3837 } // namespace views | 3837 } // namespace views |
| OLD | NEW |