| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ui/platform_window/win/win_window.h" | 5 #include "ui/platform_window/win/win_window.h" |
| 6 | 6 |
| 7 #include <algorithm> |
| 7 #include <memory> | 8 #include <memory> |
| 8 | 9 |
| 9 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 10 #include "ui/events/event.h" | 11 #include "ui/events/event.h" |
| 11 #include "ui/events/event_utils.h" | 12 #include "ui/events/event_utils.h" |
| 12 #include "ui/gfx/win/msg_util.h" | 13 #include "ui/gfx/win/msg_util.h" |
| 13 #include "ui/platform_window/platform_window_delegate.h" | 14 #include "ui/platform_window/platform_window_delegate.h" |
| 14 | 15 |
| 15 namespace ui { | 16 namespace ui { |
| 16 | 17 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 196 |
| 196 namespace test { | 197 namespace test { |
| 197 | 198 |
| 198 // static | 199 // static |
| 199 void SetUsePopupAsRootWindowForTest(bool use) { | 200 void SetUsePopupAsRootWindowForTest(bool use) { |
| 200 use_popup_as_root_window_for_test = use; | 201 use_popup_as_root_window_for_test = use; |
| 201 } | 202 } |
| 202 | 203 |
| 203 } // namespace test | 204 } // namespace test |
| 204 } // namespace ui | 205 } // namespace ui |
| OLD | NEW |